- 03 Dec, 2015 40 commits
-
-
martijn authored
This CL adds an IPAddress class intended to replace the current IPAddressNumber typedef. The class wraps a std::vector<uint8_t> containing the actual IP address and exposes a couple of helper methods. This CL only introduces the new class and related tests. BUG=496258 Review URL: https://codereview.chromium.org/1408803010 Cr-Commit-Position: refs/heads/master@{#363046}
-
erikchen authored
Discardable shared memory no longer relies on a POSIX fd backed shared memory region, as it no longer uses ftruncate. BUG=547239 Review URL: https://codereview.chromium.org/1497843002 Cr-Commit-Position: refs/heads/master@{#363045}
-
dpapad authored
Refactor both dialogs such that CSS styles can be shared between them (see reset_page_dialog.css). BUG=546840 Review URL: https://codereview.chromium.org/1482573002 Cr-Commit-Position: refs/heads/master@{#363044}
-
rmistry authored
BUG=skia:2545 TBR=phajdan Review URL: https://codereview.chromium.org/1493913005 Cr-Commit-Position: refs/heads/master@{#363043}
-
mfomitchev authored
On Aura Android the Screen instance may not be set yet when ResourceBundle::InitSharedInstance is executed. Instead of using the Screen instance to determine the scale factor, just use the available static methods in gfx::Display and gfx::DeviceDisplayInfo. BUG=507792 Review URL: https://codereview.chromium.org/1474873002 Cr-Commit-Position: refs/heads/master@{#363042}
-
newt authored
This deletes four user actions that were added long ago and are no longer used: - MobileFirstEditInOmnibox - MobileFocusedFakeboxOnNtp - MobileFocusedOmniboxOnNtp - MobileFocusedOmniboxNotOnNtp This also starts recording the FocusLocation user action when the omnibox is focused; this essentially combines MobileFocusedFakeboxOnNtp, MobileFocusedOmniboxOnNtp, and MobileFocusedOmniboxNotOnNtp into a single action. BUG=408176 Review URL: https://codereview.chromium.org/1491393002 Cr-Commit-Position: refs/heads/master@{#363041}
-
bsimonnet authored
This CL adds two Chrome OS specific histograms: * UpdateEngine.CertificateCheck.Download * UpdateEngine.CertificateCheck.UpdateCheck BUG=563800 Review URL: https://codereview.chromium.org/1490643002 Cr-Commit-Position: refs/heads/master@{#363040}
-
skobes authored
BUG=537070 Review URL: https://codereview.chromium.org/1491123002 Cr-Commit-Position: refs/heads/master@{#363039}
-
jennyz authored
Add a test case for verifying launching app with updating a shared module to the new version. Re-packaged several testing apps downloaded from webstore to remove the update url from their manifest files. BUG=555083 Review URL: https://codereview.chromium.org/1488393002 Cr-Commit-Position: refs/heads/master@{#363038}
-
ulan authored
BUG= Review URL: https://codereview.chromium.org/1481383005 Cr-Commit-Position: refs/heads/master@{#363037}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/baf869df..42acdb73 Please follow these instructions for assigning/CC'ing issues: https://github.com/v8/v8/wiki/Triaging%20issues Please close rolling in case of a roll revert: https://v8-roll.appspot.com/ This only works with a Google account. TBR=hablich@chromium.org,machenbach@chromium.org,yangguo@chromium.org,vogelheim@chromium.org Review URL: https://codereview.chromium.org/1499603003 Cr-Commit-Position: refs/heads/master@{#363036}
-
xjz authored
frame_ID. PacketKey was originally generated by combining capture_time, ssrc, and packet_id. This key may not necessarily be unique. Two or more frames with the same cpature_time had the same key and may cause one to be evicted from the list. This, in turn, will cause a receiver to become blocked waiting on a frame that the PacedSender will never attempt to send. BUG=373560 Review URL: https://codereview.chromium.org/1487223002 Cr-Commit-Position: refs/heads/master@{#363035}
-
jam authored
It's going to be very difficult to enable this for production code as any code can leak message pipes. It'll also be hard to implement correctly with multiplexing. This was added for a test, but I just changed the test instead so that it quits after it sends a lot of reply messages. BUG=556259 Review URL: https://codereview.chromium.org/1492943005 Cr-Commit-Position: refs/heads/master@{#363034}
-
forshaw authored
This patch improves the handling of importer profile creation to remove reliance on bare pointers. It also wraps created importer objects in a scoped_refptr which is what the pointer is assigned to in the caller. BUG=539746 Review URL: https://codereview.chromium.org/1492663006 Cr-Commit-Position: refs/heads/master@{#363033}
-
wangxianzhu authored
According to http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=editing%2Fselection%2Fmove-by-word-visually-mac.html, it's slow with debug config on all platforms. It also flakily timed out on try bot linux_chromium_rel_ng. Mark it slow for all platform all configurations. BUG=564771 TBR=aboxhall@chromium.org Review URL: https://codereview.chromium.org/1498733004 Cr-Commit-Position: refs/heads/master@{#363032}
-
philipj authored
The change to the generated code is such that only calls to URL.createObjectURL(null) and URL.createObjectURL(undefined) are affected, as those would previously match the nullable Blob argument. This is very low risk, due to the behavior of other browsers: Firefox and IE11 throw for both URL.createObjectURL(null) and URL.createObjectURL(undefined). Edge presumably matches IE11. Safari throws for URL.createObjectURL(undefined) but returns null for URL.createObjectURL(null), which was our behavior before this change. There are no internal calls to DOMURL::createObjectURL, so the ASSERT will hold. BUG=561338 Review URL: https://codereview.chromium.org/1492093002 Cr-Commit-Position: refs/heads/master@{#363031}
-
fsamuel authored
This CL does the following: 1. It introduces CompositorMusConnection. The connection to the Mus Window server is now managed on the compositor thread. RenderWidgetMusConnection is the corresponding main thread object. CompositorMusConnection deals with postTasking information RenderWidgetMusConnection wants to the main thread and passing information from RenderWidgetMusConnection to the compositor thread. 2. Input events are routed directly to InputHandlerManager on the compositor thread. Unconsumed input events make their way to RenderWidgetMusConnection where they're currently dropped on the floor. TEST=./out/mandoline_Debug/mojo_runner mojo:example_main --use-mus-in-renderer --use-zero-copy BUG=551250 Review URL: https://codereview.chromium.org/1484013003 Cr-Commit-Position: refs/heads/master@{#363030}
-
dpapad authored
BUG=546840 Review URL: https://codereview.chromium.org/1490503002 Cr-Commit-Position: refs/heads/master@{#363029}
-
dmazzoni authored
BUG=560900 Review URL: https://codereview.chromium.org/1473833002 Cr-Commit-Position: refs/heads/master@{#363028}
-
jbroman authored
It checks cleanly, even though //third_party/WebKit/public does not. Review URL: https://codereview.chromium.org/1491333002 Cr-Commit-Position: refs/heads/master@{#363027}
-
bshe authored
BUG=561669 Review URL: https://codereview.chromium.org/1478493004 Cr-Commit-Position: refs/heads/master@{#363026}
-
creis authored
In OOPIF-enabled modes, each FrameNavigationEntry has a per-frame PageState object. The states for each frame in the tree need to be combined into a single PageState for GetPageState, and a single PageState needs to be split into individual FrameNavigationEntries for SetPageState. Because GetPageState is const and returns a const ref, we need to cache the combined PageState each time it could change. BUG=545219 TEST=Close and restore a tab or session with OOPIFs. Review URL: https://codereview.chromium.org/1496483002 Cr-Commit-Position: refs/heads/master@{#363025}
-
rtoy authored
The ConvolverNode only supports 1, 2 or 4 channels and must throw an exception for any other number of channels. BUG=563379 TEST=convolver-channels.html Review URL: https://codereview.chromium.org/1497803002 Cr-Commit-Position: refs/heads/master@{#363024}
-
agrieve authored
BUG=552040 Review URL: https://codereview.chromium.org/1493893007 Cr-Commit-Position: refs/heads/master@{#363023}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/53c5d5fb795f..222b30d3a84b $ git log 53c5d5fb7..222b30d3a --date=short --no-merges --format='%ad %ae %s' 2015-12-03 kjlubick Make building with clang documentation a bit easier to find 2015-12-03 egdaniel Create GLSLUniformHandler class for gpu backend 2015-12-03 jvanverth Add transfer buffer support. 2015-12-03 fmalita Don't use the Sk4f gradient impl without SIMD CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=scroggo@google.com Review URL: https://codereview.chromium.org/1498883002 Cr-Commit-Position: refs/heads/master@{#363022}
-
pfeldman authored
TBR=kozyatinskiy NOTRY=true BUG=564585 Review URL: https://codereview.chromium.org/1498903002 Cr-Commit-Position: refs/heads/master@{#363021}
-
jri authored
Review URL: https://codereview.chromium.org/1454313002 Cr-Commit-Position: refs/heads/master@{#363020}
-
dbeam authored
R=dpapad@chromium.org BUG=none TEST=less code Review URL: https://codereview.chromium.org/1492253002 Cr-Commit-Position: refs/heads/master@{#363019}
-
jam authored
BUG=556259 Review URL: https://codereview.chromium.org/1494863002 Cr-Commit-Position: refs/heads/master@{#363018}
-
kapishnikov authored
Implements new public-key-pinning Java API (see https://tools.ietf.org/html/rfc7469). The API is accessible through CronetEngine.Builder.addPublicKeyPins() method. The method accepts the host, the a collection of pin hashes, the flag that indicates whether the pinning policy should be applied to the host subdomains and the pin expiration date. The pins are not persisted between client restarts. BUG=522275 Review URL: https://codereview.chromium.org/1407263010 Cr-Commit-Position: refs/heads/master@{#363017}
-
alph authored
Cut the max text length to 200 characters. Use Newton method rather than b-search to find the text length. Review URL: https://codereview.chromium.org/1493073002 Cr-Commit-Position: refs/heads/master@{#363016}
-
jsbell authored
testharness.js - https://github.com/w3c/testharness.js commit: 8658d6ca31d086e695b333aef55bb388091c7049 files: testharness.js idlharness.js webidl2.js - https://github.com/darobin/webidl2.js commit: bd216bcd5596d60734450adc938155deab1e1a80 files: WebIDLParser.js (orig: webidl2.js) Related files testharness.css and vendor-prefix.js did not require updates - see LayoutTests/resources/README.txt BUG=561708 R=domenic@chromium.org Review URL: https://codereview.chromium.org/1493473002 Cr-Commit-Position: refs/heads/master@{#363015}
-
fsamuel authored
RenderWidgetHostViewMus::CopyFromCompositingSurfaceToVideoFrame had a NOTREACHED() that we were hitting on navigation. This CL removes that and adds a TODO. BUG=none Review URL: https://codereview.chromium.org/1493823002 Cr-Commit-Position: refs/heads/master@{#363014}
-
sergeyu authored
Review URL: https://codereview.chromium.org/1493083002 Cr-Commit-Position: refs/heads/master@{#363013}
-
chrishtr authored
Blink now implements the same thing in its interest rect code. CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1485823005 Cr-Commit-Position: refs/heads/master@{#363012}
-
nektar authored
Ultimately it will be done for all platforms and text selection changed will be deprecated. TESTED=manual testing with Jaws and NVDA using textareas, input and content editables BUG=558710 R=dmazzoni@chromium.org Review URL: https://codereview.chromium.org/1490953002 Cr-Commit-Position: refs/heads/master@{#363011}
-
jsbell authored
Pull in some of the upstream changes made to the Service Worker Cache API tests. BUG=476814,482241,429832,564245 Review URL: https://codereview.chromium.org/1485283002 Cr-Commit-Position: refs/heads/master@{#363010}
-
zmo authored
BUG=565438 TEST=GPU FYI bots TBR=bajones@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1493553008 Cr-Commit-Position: refs/heads/master@{#363009}
-
jsbell authored
Let bindings generate a TypeError, rather than the module code producing a TypeMismatchError or InvalidModificationError, if null is passed for non-nullable interface arguments. This was previously untested, so new tests were added for the async API and sync API (in worker) cases. (Some async cases are not modified in this CL, as there is a behavior change we want to tackle separately.) BUG=561338 R=philipj@opera.com Review URL: https://codereview.chromium.org/1480363003 Cr-Commit-Position: refs/heads/master@{#363008}
-
huangs authored
Under pinch-to-zoom, there's no extra redraw event. However, the old WindowView.resetGeometry() code was sensitive to dimensions (window.innerWidth/innerHeight) that change with pinch-to-zoom. So when page is pinch-to-zoomed in, refreshing or resizing triggers redraw, causing inconsistent element sizing. Our fix is to use dimensions that are insensitive to pinch-to-zoom, i.e., document.documentElement.clientWidth/clientHeight. Under 100% pinch-to-zoom, these are identical to the old dimensions except when scroll bars are present. BUG=481842 Review URL: https://codereview.chromium.org/1494783002 Cr-Commit-Position: refs/heads/master@{#363007}
-