- 26 Aug, 2016 40 commits
-
-
zqzhang authored
Notification PendingIntents having the same name will conflict with each other. This CL fixes the conflict for MediaNotification stop button and swipe away, which now fire different actions but we treat both as ACTION_STOP. BUG=640301 Review-Url: https://codereview.chromium.org/2279263002 Cr-Commit-Position: refs/heads/master@{#414754}
-
rbyers authored
Remove the mostly useless CountBits abstraction and better align the generic feature and CSS property usage tracking. Also a couple other minor cleanups and comments warning of outstanding issues. BUG=597963 Review-Url: https://codereview.chromium.org/2284503002 Cr-Commit-Position: refs/heads/master@{#414753}
-
ellyjones authored
The main use of these by end-users is to disable cursor blink by setting them to extremely large values. BUG=500168 Review-Url: https://codereview.chromium.org/2282533002 Cr-Commit-Position: refs/heads/master@{#414752}
-
lukasza authored
Also tighten up the matcher to also require that |value| field: - is public, - is inside a struct-or-class that doesn't have any methods. BUG=640749 Review-Url: https://codereview.chromium.org/2283553002 Cr-Commit-Position: refs/heads/master@{#414751}
-
danakj authored
This was mostly tracked because while lost the main thread Renderer capabilities would not be valid. However a few things have changed now: 1) No more renderer capabilities. So 2) We don't care if we main frame without an output surface. 3) We don't defer commits on the main thread so we wouldn't try to start a frame on the main thread while the output surface is lost anyways. The only exception is SingleThreadProxy needs to know to request and output surface when doing synchronous composite things. So it does that itself now. R=enne BUG=606056 CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel Review-Url: https://codereview.chromium.org/2270573002 Cr-Commit-Position: refs/heads/master@{#414750}
-
chili authored
BUG=635644 Review-Url: https://codereview.chromium.org/2273373003 Cr-Commit-Position: refs/heads/master@{#414749}
-
moshayedi authored
This CL: * Uses Mus' IMEServer to do the IME logic in InputMethodMus. * Adds unittests to test InputMethodMus. * Starts test_ime_driver on mus+ash session startup. * Modifies test_ime_driver to not-handle non character events. BUG=548407 Review-Url: https://codereview.chromium.org/2230393002 Cr-Commit-Position: refs/heads/master@{#414748}
-
jeffcarp authored
(This is my first CL so please let me know if I'm doing something wrong) BUG=614963 Review-Url: https://codereview.chromium.org/2273363004 Cr-Commit-Position: refs/heads/master@{#414747}
-
mcchou authored
The copy constructor was trying to call DeepCopy() against a nullptr. This adds a check if the type is NULLTYPE and return base::Value() if so. BUG=b:30963813 TEST=call the copy constructor with a NULLTYPE instance to see if it crashes Review-Url: https://codereview.chromium.org/2284713002 Cr-Commit-Position: refs/heads/master@{#414746}
-
ikilpatrick authored
NGConstraintSpace now has a backing NGPhysicalConstaintSpace and provides abstract coordinate system accessors for everything. Makes NG*ConstraintSpace GarbagedCollected as well as we'll need this once we move to a state machine / for caching fragment results. BUG=635619 Review-Url: https://codereview.chromium.org/2267383003 Cr-Commit-Position: refs/heads/master@{#414745}
-
yzshen authored
BUG=None Review-Url: https://codereview.chromium.org/2277903004 Cr-Commit-Position: refs/heads/master@{#414744}
-
johnme authored
BUG=641400 TBR=michaelpg@chromium.org NOTRY=true NOTREECHECKS=true Review-Url: https://codereview.chromium.org/2284823002 Cr-Commit-Position: refs/heads/master@{#414743}
-
fdoray authored
This CL removes calls to these methods from gpu/ files: - MessageLoop::PostTask - MessageLoop::PostDelayedTask - MessageLoop::ReleaseSoon - MessageLoop::DeleteSoon - MessageLoop::Run - MessageLoop::RunUntilIdle BUG=616447 CQ_INCLUDE_TRYBOTS=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 Review-Url: https://codereview.chromium.org/2274213004 Cr-Commit-Position: refs/heads/master@{#414742}
-
robpercival authored
BUG=631087 Review-Url: https://codereview.chromium.org/2183073002 Cr-Commit-Position: refs/heads/master@{#414741}
-
einbinder authored
This is in preperation for CodeMirror-based console BUG=607690 NOTRY=true Review-Url: https://codereview.chromium.org/2271683003 Cr-Commit-Position: refs/heads/master@{#414740}
-
kraynov authored
Integration between newly indroduced trace buffer writer and proto generated stubs. BUG=608719 Review-Url: https://codereview.chromium.org/2281903002 Cr-Commit-Position: refs/heads/master@{#414739}
-
mvanouwerkerk authored
BUG=637257 Review-Url: https://codereview.chromium.org/2275693003 Cr-Commit-Position: refs/heads/master@{#414738}
-
johnme authored
The following tests are flaky on all platforms: - DumpAccessibilityTreeTest.AccessibilityIframeTransform - DumpAccessibilityTreeTest.AccessibilityIframeCoordinates - DumpAccessibilityTreeTest.AccessibilityIframeCoordinatesCrossProcess - DumpAccessibilityTreeTest.AccessibilityIframeTransformCrossProcess http://test-results.appspot.com/dashboards/flakiness_dashboard.html#testType=content_browsertests&tests=DumpAccessibilityTreeTest.AccessibilityIframe NOTREECHECKS=true NOTRY=true BUG=622387 TBR=dmazzoni@chromium.org Review-Url: https://codereview.chromium.org/2282903002 Cr-Commit-Position: refs/heads/master@{#414737}
-
jamescook authored
It's confusing whether to add new accelerators to AcceleratorController vs. AcceleratorControllerDelegateAura. Add some comments. BUG=none TEST=none Review-Url: https://codereview.chromium.org/2282853002 Cr-Commit-Position: refs/heads/master@{#414736}
-
lethalantidote authored
This CL reorganizes classes that derived from LocationArbitrator to instead derive from LocationProvider. There was a quite a bit of overlap between the two interfaces, and merging the two in favor of LocationProvider makes later work with Blimp much easier. Other work included: *Addresses TODO to remove CreateArbitrator in favor of SetArbitratorForTest BUG=614486, 637869 Review-Url: https://codereview.chromium.org/2226143002 Cr-Commit-Position: refs/heads/master@{#414735}
-
gogerald authored
BUG=b/31003541 Review-Url: https://codereview.chromium.org/2284563004 Cr-Commit-Position: refs/heads/master@{#414734}
-
jdufault authored
BUG=616112 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2258553004 Cr-Commit-Position: refs/heads/master@{#414733}
-
edchin authored
Change makes for more modular architecture. This allows the user of the webserver to build layers of ResponseProviders instead of creating a single monolithic provider. BUG=none Review-Url: https://codereview.chromium.org/2285773002 Cr-Commit-Position: refs/heads/master@{#414732}
-
estade authored
Overview mode is probably more useful to people who are trying to use a touch screen. Simply no-op on Alt+Tab when the virtual keyboard's showing. BUG=638269 Review-Url: https://codereview.chromium.org/2256283003 Cr-Commit-Position: refs/heads/master@{#414731}
-
fs authored
Synchronize hit-testing code with rendering code with regards to how the coordinate space is handled (for userSpaceOnUse <clipPath>s), and how the reference boxes is computed. Also "straighten" out code-flow a bit while here. BUG=418484 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Review-Url: https://codereview.chromium.org/2280963002 Cr-Commit-Position: refs/heads/master@{#414730}
-
rdsmith authored
BUG=572740 R=davidben@chromium.org Review-Url: https://codereview.chromium.org/2282523002 Cr-Commit-Position: refs/heads/master@{#414729}
-
mustaq authored
Covered both unconditional firing and firing for captured pointer ids. BUG=640637 TBR=isherman@chromium.org Review-Url: https://codereview.chromium.org/2274253002 Cr-Commit-Position: refs/heads/master@{#414728}
-
siggi authored
R=chrisha@chromium.org TBR=primiano@chromium.org BUG=641242 Review-Url: https://codereview.chromium.org/2282763002 Cr-Commit-Position: refs/heads/master@{#414727}
-
tkent authored
This is a preparation to remove WTFLogAlwasy() from Node.cpp. This CL has no behavior changes. BUG=638849 Review-Url: https://codereview.chromium.org/2282683002 Cr-Commit-Position: refs/heads/master@{#414726}
-
rdevlin.cronin authored
In the renderer, we need to parse the extension schema string and pass it to JS in order to create our bindings. However, right now, we first parse this into a DictionaryValue, and then convert it into a v8::Object. However, now that we fully generate all the schema code, we should be able to parse it directly from a string into a v8::Object. BUG=640247 Review-Url: https://codereview.chromium.org/2271813003 Cr-Commit-Position: refs/heads/master@{#414725}
-
treib authored
BUG=638930 Review-Url: https://codereview.chromium.org/2282743002 Cr-Commit-Position: refs/heads/master@{#414724}
-
rdevlin.cronin authored
BUG=497340 Review-Url: https://codereview.chromium.org/2279753004 Cr-Commit-Position: refs/heads/master@{#414723}
-
recipe-roller authored
This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) build: https://crrev.com/f1a276cfabcd1f1cc950e36e66a2a50a664ce57f Roll recipe dependencies (trivial). (recipe-roller@chromium.org) https://crrev.com/7f070732c4b67f610e43d25dfd4ecd61788c15a9 remote_run: respect recipe build property (phajdan.jr@chromium.org) depot_tools: https://crrev.com/5224ece27c41fab3633feefdec9153786624a66d git_bootstrap.py: add a switch to control client bitness (phajdan.jr@chromium.org) TBR=martiniss@chromium.org,phajdan.jr@chromium.org BUG=641248,593999,635421,629679 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Review-Url: https://codereview.chromium.org/2284653002 Cr-Commit-Position: refs/heads/master@{#414722}
-
rajendrant authored
When precache manifest is fetched, the list of used and unused resources corresponding to the top host are sent as request parameters in the manifest URL. The resource URLs are hashed individually and sent as base64 encoded string. BUG=626463 Review-Url: https://codereview.chromium.org/2229983002 Cr-Commit-Position: refs/heads/master@{#414721}
-
gambard authored
This CL adds a a return value representing whether the element was found to the TapWebViewElementWithId method. BUG=none Review-Url: https://codereview.chromium.org/2268863004 Cr-Commit-Position: refs/heads/master@{#414720}
-
jie.a.chen authored
glTexStorage* work incorrectly if the GL_TEXTURE_BASE_LEVEL is not 0. This CL simply sets it to 0 beforehand and restores it afterward. BUG=640506 CQ_INCLUDE_TRYBOTS=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 Review-Url: https://codereview.chromium.org/2272823004 Cr-Commit-Position: refs/heads/master@{#414719}
-
stkhapugin authored
Fixes IOSChromeContentSuggestionsServiceFactory::BuildServiceInstanceFor return types by std::moving them, as the declared return type is a superclass of the actually returned types. BUG=None Review-Url: https://codereview.chromium.org/2287523002 Cr-Commit-Position: refs/heads/master@{#414718}
-
changwan authored
HTC's mail apk calls evaluateJavaScript() inside InputConnection#setComposingText(). This is problematic with ImeThread feature since InputConnection methods are now running on its own thread (IME thread). This causes a thread check assertion in Android's framework (android.webkit.WebView). As a workaround, we set sEnforceThreadChecking to false immediately after it was set in WebView's constructor. HTC is actively fixing their apk to avoid this crash, but as a last resort, this workaround will help avoid such a crash. BUG=636717, 622151 Review-Url: https://codereview.chromium.org/2243753002 Cr-Commit-Position: refs/heads/master@{#414717}
-
mmoroz authored
R=inferno@chromium.org, kcc@chromium.org, mbarbella@chromium.org, ochang@chromium.org BUG=640627 Review-Url: https://codereview.chromium.org/2282703002 Cr-Commit-Position: refs/heads/master@{#414716}
-
dgn authored
Don't use properties of the above-the-fold view holder to calculate how the peeking card should be, as it is sometimes not already attached to the recycler view and thus not accessible. BUG=633511 Review-Url: https://codereview.chromium.org/2273713002 Cr-Commit-Position: refs/heads/master@{#414715}
-