- 14 Sep, 2016 40 commits
-
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/79db609948b0..8b1ed1614492 $ git log 79db60994..8b1ed1614 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 npm Map glyph bitmap in LookUpGlyphBitmap even when unsuccessful BUG=638856 TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2332333004 Cr-Commit-Position: refs/heads/master@{#418605}
-
eugenebut authored
Unlike web::shell_test_util::LoadUrl this new method waits until the load is completed. BUG=646544 Review-Url: https://codereview.chromium.org/2340533004 Cr-Commit-Position: refs/heads/master@{#418604}
-
azurewei authored
The added API will be fired when the virtual keyboard window has been closed, for example, this can happen when turning off on-screen keyboard or exiting tablet mode. IME extensions rely on input view's visibility changing event to do some work such as hide candidate window. While, when exiting tablet mode, OS will close input view window immediately but doesn't fire 'unload' event, so the IME extensions won't receive the visibility changed event. Thus, we add this API to notify the extensions the keyboard closed event. BUG=619763 TEST=KeyboardControllerTest.CloseKeyboard Review-Url: https://codereview.chromium.org/2122873002 Cr-Commit-Position: refs/heads/master@{#418603}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/eed356d281ad..95573e4865c9 $ git log eed356d28..95573e486 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 fmalita Fix SVG flag iOS linking 2016-09-14 fmalita Nanobench SVG support CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=djsollen@google.com Review-Url: https://codereview.chromium.org/2341613003 Cr-Commit-Position: refs/heads/master@{#418602}
-
miguelg authored
Both Displaying and clicking on notifications is supported. Closing notifiations and retrieving them is not. By itself the CL does nothing (so don't enable the flag for daily use just yet) since there is no XPC service backing up the calls yet. Since no changes in the BUILD system are required for this piece to land I am only adding them behind a run time flag not a compile time one. If you feel brave The companion XPC service is in https://chromiumcodereview.appspot.com/2070903002/ BUG=571056 Review-Url: https://codereview.chromium.org/2158463003 Cr-Commit-Position: refs/heads/master@{#418601}
-
ben authored
TBR=rockot@chromium.org,tsepez@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review-Url: https://codereview.chromium.org/2339703003 Cr-Commit-Position: refs/heads/master@{#418600}
-
megjablon authored
Deprecating the DataReductionProxy.UIAction.LoFi histogram. Replacing with Previews.InfoBarAction.LoFi, Previews.InfoBarAction.Offline, Previews.InfoBarAction.WebLite, and Previews.ContextMenuAction. Previews.InfoBarAction.LoFi, Previews.InfoBarAction.Offline, and Previews.InfoBarAction.WebLite buckets: “Infobar shown” "Infobar 'Load original' clicked” "Infobar dismissed by user" "Infobar dismissed by navigation" Previews.ContextMenuAction.LoFi buckets: "'Load image' context menu item shown" "'Load image' context menu item clicked" "Pages where the user has clicked 'Load image' at least once" "'Load images' context menu item shown" "'Load images' context menu item clicked" BUG=615566 Review-Url: https://codereview.chromium.org/2258283002 Cr-Commit-Position: refs/heads/master@{#418599}
-
nyquist authored
The blimp code contains cross platform code, linux code and Android code. To avoid confusion about where code originates from, this CL removes all 'using base::android::Foo' statements, and instead fully writes them out whenever they are used. BUG=None Review-Url: https://codereview.chromium.org/2339603002 Cr-Commit-Position: refs/heads/master@{#418598}
-
perumaal authored
BUG= Review-Url: https://codereview.chromium.org/2339473003 Cr-Commit-Position: refs/heads/master@{#418597}
-
ymalik authored
https://codereview.chromium.org/2029323003 attempted to add an optimization that would run an animation on the MT by querying m_scrollableArea-> shouldScrollOnMainThread. This was wrong because we were querying compositing state outside of the CompositingClean state. This reverts that CL. The original bug was not fixed in the CL that this reverts and that CL was just wrong. This CL doesn't have a behavioral change. BUG=639100 Review-Url: https://codereview.chromium.org/2338913002 Cr-Commit-Position: refs/heads/master@{#418596}
-
megjablon authored
The Lo-Fi snackbar has been replaced by the previews infobar. Remove the snackbar and all associated code. BUG=615566 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Review-Url: https://codereview.chromium.org/2263433002 Cr-Commit-Position: refs/heads/master@{#418595}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/c37ceeb3..61504ac2 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. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2346513003 Cr-Commit-Position: refs/heads/master@{#418594}
-
eroman authored
ever a naked const char* is passed in. I hit this bug while doing a refactor, so ensuring it can't happen again for this callsite seems prudent. BUG=634443 Review-Url: https://codereview.chromium.org/2331323005 Cr-Commit-Position: refs/heads/master@{#418593}
-
ssid authored
The HostDiscardableSharedMemoryManager is destroyed when shutting down and the dump provider is unregistered. But, the dump provider is registered with no task runner which causes races in memory dumps. This CL fixes it to register on right thread. BUG=643438 Review-Url: https://codereview.chromium.org/2334343002 Cr-Commit-Position: refs/heads/master@{#418592}
-
ccameron authored
This adds the output device color profile to display::Display, and populates it correctly on Mac. We will want to do this for all platforms. The color profile is then plumbed through the same IPCs that take the device scale factor, to get to the renderer process' RenderWidgetCompositor. Note that we are sending the full ICCProfile this far. This is important, because the renderer process will be setting the ICCProfile of its rasterized IOSurfaces, and there is a power impact of even slight differences between the monitor profile and the IOSurface profile. The ICCProfile is then sent as a gfx::ColorProfile (which internally references the ICCProfile, for the above purpose) to the RenderWidgetCompositor, from where it will be pushed to cc. In the next step, we will (under a flag) specify the color space for rasterization. BUG=44872 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Committed: https://crrev.com/f1fef7489c29deeee2a29c41ce4851e9ad1bd67b Review-Url: https://codereview.chromium.org/2325773003 Cr-Original-Commit-Position: refs/heads/master@{#418422} Cr-Commit-Position: refs/heads/master@{#418591}
-
gayane authored
As on Android manual crash uploads can happen on cellular connection it is important to display the size of the crash reports. BUG=641628 Review-Url: https://codereview.chromium.org/2330573002 Cr-Commit-Position: refs/heads/master@{#418590}
-
pdr authored
BUG=644514 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2340663002 Cr-Commit-Position: refs/heads/master@{#418589}
-
megjablon authored
PreviewsInfoBarTabHelper tracks whether a previews infobar has been shown for a tab. If a previews infobar has already been shown for a tab, it will not be shown again. BUG=615566 Review-Url: https://codereview.chromium.org/2256383002 Cr-Commit-Position: refs/heads/master@{#418588}
-
fgorski authored
In OfflinePageMetadataStore the following changes: * AddOfflinePage (for single item) is added * UpdateOfflinePages (for multiple items) is added * AddOrUpdateOfflinePage is removed. Resulting changes: * OfflinePageMetadataStoreSQL and OfflinePageTestStore are updated accordingly. * Tests are updated. * OfflinePageModelImpl usage of above functions is updated. BUG=645522 Review-Url: https://codereview.chromium.org/2339693002 Cr-Commit-Position: refs/heads/master@{#418587}
-
eroman authored
This just updates the interface and callers. Actually emitting errors in the underlying implementation will be a different CL. BUG=634443 Review-Url: https://codereview.chromium.org/2327973002 Cr-Commit-Position: refs/heads/master@{#418586}
-
dpapad authored
BUG=644451 Review-Url: https://codereview.chromium.org/2339753002 Cr-Commit-Position: refs/heads/master@{#418585}
-
ellyjones authored
This hack is obsolete since the minimum supported Mac version is now 10.9. This CL also removes the checked-in copy of libc++-static, and removes it from DEPS. BUG= Review-Url: https://codereview.chromium.org/2314753002 Cr-Commit-Position: refs/heads/master@{#418584}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/b9b708477f23..32dd31095913 $ git log b9b708477..32dd31095 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 perezju Reland of "[telemetry] Wire TsProxy through telemetry's network stack." (patchset #1 id:1 of https://codereview.chromium.org/2342503002/ ) BUG=639632 TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2344543002 Cr-Commit-Position: refs/heads/master@{#418583}
-
ben authored
This implements: - allows the content embedder to merge a manifest into the base ones provided by content, allowing it to add to the list of interfaces exposed to the renderer. - adds such an overlay to chrome/browser So.. from now on if you add an interface to either the browser/renderer, you'll need to list it in the manifest. I wonder how we should broadcast this. Also as a separate step we should require these manifests get security review. R=rockot@chromium.org,tsepez@chromium.org Committed: https://crrev.com/4ea17059bf78553528f3ffb4a9de84a447622fd3 Committed: https://crrev.com/807a926c9ca02ac8ae1b52e82537834ef78fb9ba Review-Url: https://codereview.chromium.org/2259903002 Cr-Original-Original-Commit-Position: refs/heads/master@{#418282} Cr-Original-Commit-Position: refs/heads/master@{#418398} Cr-Commit-Position: refs/heads/master@{#418582}
-
maxbogue authored
Things within a component should have a namespace that matches its name. BUG=646685 Review-Url: https://codereview.chromium.org/2335193006 Cr-Commit-Position: refs/heads/master@{#418581}
-
aberent authored
Revert of ImageCapture: Connect takePhoto() VideoCaptureDeviceTest (patchset #1 id:1 of https://codereview.chromium.org/2340573002/ ) Reason for revert: Fails on Android L. BUG=646840 Original issue's description: > ImageCapture: Connect takePhoto() VideoCaptureDeviceTest > > This CL enables VideoCaptureDeviceTest.TakePhoto for > Android. (Note that, due to other circumstances, it'll > only be enabled for devices implementing the Camera2 > API in non-legacy mode). > > The only modification is that Android creates JPEGs > with APP1 JFIF header, because it includes EXIF information. > > BUG=518807, 626857 > > Committed: https://crrev.com/a8ae6bfb0e432ee220b641b0e8bb3f4800a7448a > Cr-Commit-Position: refs/heads/master@{#418423} TBR=emircan@chromium.org,chfremer@chromium.org,mcasas@chromium.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=518807, 626857 Review-Url: https://codereview.chromium.org/2344503003 Cr-Commit-Position: refs/heads/master@{#418580}
-
skia-deps-roller authored
https://chromium.googlesource.com/skia.git/+log/6ef6999017fe..eed356d281ad $ git log 6ef699901..eed356d28 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 caryclark Rewriting path writer 2016-09-14 msarett Reduce overhead for linear color xforms 2016-09-14 jvanverth Switch default for SkGaussianBlurShader radius size. BUG=5188 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel TBR=djsollen@google.com Review-Url: https://codereview.chromium.org/2331223006 Cr-Commit-Position: refs/heads/master@{#418579}
-
joenotcharles authored
BUG=631480 Review-Url: https://codereview.chromium.org/2226133005 Cr-Commit-Position: refs/heads/master@{#418578}
-
dewittj authored
This is part of a cleanup before switching to a query interface. BUG=622763 Review-Url: https://codereview.chromium.org/2336973005 Cr-Commit-Position: refs/heads/master@{#418577}
-
svillar authored
The purpose of the class is to mark a subtree as needing layout mainly for multipass layout. We should just use LayoutObject->setNeedsLayout() Review-Url: https://codereview.chromium.org/2341433003 Cr-Commit-Position: refs/heads/master@{#418576}
-
kylechar authored
This CL adds GLX support to the Ozone X11 platform. Ozone X11 will attempt to use GLX by default. It reuses the existing GLX GLSurface and GLContext. Changes to NativeViewSurfaceGLX are necessary as it handles Expose events from the PlatformEventSource. The class is split into an abstract base class with two small event handling implementations for USE_X11 and USE_OZONE. BUG=361137,640613 Review-Url: https://codereview.chromium.org/1723303002 Cr-Commit-Position: refs/heads/master@{#418575}
-
ymalik authored
Note that this bug was found while working on crbug.com/597479. fast/dom/vertical-scrollbar-in-rtl.html was failing a DCHECK because we would try to adjust when there was no animation. This CL also exposes RunState via runStateForTesting. BUG=597479 Review-Url: https://codereview.chromium.org/2336823003 Cr-Commit-Position: refs/heads/master@{#418574}
-
bungeman authored
-4d3f7ca8cedbddad40b9e93a82926618e3fb4265 +c38be52bf8de3b1699d74932b849bf150265819e BUG=chromium:646635 Review-Url: https://codereview.chromium.org/2340713003 Cr-Commit-Position: refs/heads/master@{#418573}
-
rdevlin.cronin authored
The Cloud Datastore API is being updated. Update server2 to match. Release notes for the API: https://cloud.google.com/datastore/release-notes BUG=646877 Review-Url: https://codereview.chromium.org/2337753002 Cr-Commit-Position: refs/heads/master@{#418572}
-
nhiroki authored
Before this CL, WorkerThread checks whether forcible termination happened by WorkerOrWorkletScriptController::isExecutionTerminating(). After this CL, WorkerThread checks it by WorkerThread::isForciblyTerminated() instead. This should be clearer than the previous way and enables to remove an access to WorkerThread::m_globalScope from the main thread. BUG=638877 Review-Url: https://codereview.chromium.org/2324693003 Cr-Commit-Position: refs/heads/master@{#418571}
-
pdfium-deps-roller authored
https://pdfium.googlesource.com/pdfium.git/+log/89f8fa8694bb..79db609948b0 $ git log 89f8fa869..79db60994 --date=short --no-merges --format='%ad %ae %s' 2016-09-14 dsinclair Rename CPDFDoc_Environment to CPDFSDK_Environment 2016-09-14 dsinclair Split CPDFXFA_Document apart 2016-09-14 dsinclair Cleanup CPDFXFA_Document. TBR=dsinclair@chromium.org Review-Url: https://codereview.chromium.org/2338273003 Cr-Commit-Position: refs/heads/master@{#418570}
-
jamescook authored
This is needed for other //chromeos/dbus refactoring for mus+ash. * Rename stub to fake in DBusThreadManager and DBusClientBundle for consistency with the Fake*Client implementations * Extract DBusClientType into its own file * Move --dbus-unstub-clients parsing into the same file so that the client name strings are near the enum * Add some simple unit tests for DBusThreadManager initialization No functional changes. BUG=644414 TEST=chromeos_unittests TBR=peter@chromium.org Review-Url: https://codereview.chromium.org/2338063002 Cr-Commit-Position: refs/heads/master@{#418569}
-
dcheng authored
BUG=581865 Review-Url: https://codereview.chromium.org/2323993004 Cr-Commit-Position: refs/heads/master@{#418568}
-
xunjieli authored
This CL implements QuicHttpStream::GetLoadTimingInfo. |dns_start| and |dns_end| are obtained in QuicStreamFactory::Job::DoResolveHost and DoResolveHostComplete. These two values are passed to QuicChromiumClientSession's constructor. |connect_start| and |connect_end| are obtained in QuicChromiumClientSession::CrytoConnect() and when handshake is confirmed. |ssl_start| and |ssl_end| are the same as |connect_start| and |connect_end| because QUIC always does encryption. If a session is reused, the connect_timing fields should all be null. This CL also sets |socket_reused| field of LoadTimingInfo accordingly. BUG=637051 Committed: https://crrev.com/5608fc1bd4f0a80b6d1996f3f4059f2efa0a0777 Review-Url: https://codereview.chromium.org/2324183002 Cr-Original-Commit-Position: refs/heads/master@{#417969} Cr-Commit-Position: refs/heads/master@{#418567}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/567592da..c37ceeb3 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. CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel TBR=hablich@chromium.org,machenbach@chromium.org,littledan@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2339163002 Cr-Commit-Position: refs/heads/master@{#418566}
-