- 06 Feb, 2015 40 commits
-
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/7a9fd74..f5c6006 TBR=apavlov@chromium.org,dpranke@chromium.org Review URL: https://codereview.chromium.org/890603003 Cr-Commit-Position: refs/heads/master@{#315025}
-
benwells authored
This is used for the app banner manager to determine if it should show a banner for the current page. BUG=452825 Review URL: https://codereview.chromium.org/893793005 Cr-Commit-Position: refs/heads/master@{#315024}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#315023}
-
jkarlin authored
There are correctness issues in the ServiceWorkerCacheStorage when multiple operations occur on the same key in parallel. The various steps of the operations can interleave. This CL serializes all storage operations by placing all operations in a queue and calling the next operation from the callback of the previous operation. While this provides correctness, it is sub-optimal. We really only need to serialize operations that affect the same key. A smarter scheduler can be created in the future to implement that (see https://crbug.com/451174). What this CL does: * Creates a new ServiceWorkerCacheScheduler class used by both ServiceWorkerCache and ServiceWorkerCacheStorage * Refactor ServiceWorkerCache to use the new scheduler * Make ServiceWorkerCacheStorage run sequentially, using the scheduler BUG=450697 Review URL: https://codereview.chromium.org/867903005 Cr-Commit-Position: refs/heads/master@{#315022}
-
tnagel authored
For Chromium 44 not only SSLv3 support but also the policies that allow to control SSL/TLS versions will be removed. BUG=436391 Review URL: https://codereview.chromium.org/899973005 Cr-Commit-Position: refs/heads/master@{#315021}
-
yurys authored
We are going to remove Timeline domain from the remote debugging protocol soon. This CL fixes remaining usages of timeline commands. BUG=448318 Review URL: https://codereview.chromium.org/902893005 Cr-Commit-Position: refs/heads/master@{#315020}
-
johnme authored
A regression was introduced by https://codereview.chromium.org/823993003 whereby the first push registration only works if the user is signed in, and hence an AppHandler happens to be added by sync. Instead Push should add AppHandlers for pending registrations so there is always an app handler while we are trying to register. BUG=456054 Review URL: https://codereview.chromium.org/905713002 Cr-Commit-Position: refs/heads/master@{#315019}
-
mlamouri authored
Instead of returning a boolean to say whether the focus suceeded, this is now returning an updated WindowClient which will contain the new focus state. This is a three sided CL: Part 1: https://codereview.chromium.org/897493002 Part 2: <this> Part 3: https://codereview.chromium.org/868233006 BUG=447212 Review URL: https://codereview.chromium.org/894853007 Cr-Commit-Position: refs/heads/master@{#315018}
-
alemate authored
BUG=416494 TEST=manual Review URL: https://codereview.chromium.org/903733002 Cr-Commit-Position: refs/heads/master@{#315017}
-
mkwst authored
When `notifySignedOut` is called, we need to ensure that we stop automagically providing a user's credentials to the website that triggered the notification. This CL does that in the brute-force way that we all know and love: grab all forms, walk through each and set a flag for matching origins. BUG=450581 Review URL: https://codereview.chromium.org/902843002 Cr-Commit-Position: refs/heads/master@{#315016}
-
phoglund authored
Depends on https://codereview.chromium.org/907433002/. BUG=455758 TESTED=Removed the webrtc-samples directory, applied https://codereview.chromium.org/900403002, compiled and then ran: out/Release/browser_tests --run-manual --gtest_filter=WebRtcApprtcBrowserTest.MANUAL_WorksOnApprtc on Linux. Review URL: https://codereview.chromium.org/902133002 Cr-Commit-Position: refs/heads/master@{#315015}
-
v8-autoroll authored
TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/906493002 Cr-Commit-Position: refs/heads/master@{#315014}
-
habib.virji authored
Sets the domCode value to the WebKeyboard event. Blink then using embedder API call to converts a dom code to a DOM code value. DOM3 code value are defined in keyboard_converer_data.h, where it maps the native value to the DOM code value. On blink side, it sends dom key value to fetch DOM3 code value. Includes changes to the eventsender as previously it used windowsVirtualKeyCode. This has been replaced by code string, which is used to find equivalent domCode value. BUG=227231 R=garykac, Wez Review URL: https://codereview.chromium.org/658183002 Cr-Commit-Position: refs/heads/master@{#315013}
-
peter authored
Update the Chromium uses of the Blink Push API-related headers to match the new locations of these file. This is part of a three-sided patch: [1] https://codereview.chromium.org/888513003/ [2] This patch. [3] https://codereview.chromium.org/871643005/ BUG=453032 Review URL: https://codereview.chromium.org/894683002 Cr-Commit-Position: refs/heads/master@{#315012}
-
marja authored
Script streaming is now on by default since M41 (because of this config turned it always on). Blink side ignores the config since r189473. R=jochen@chromium.org BUG= Review URL: https://codereview.chromium.org/905683002 Cr-Commit-Position: refs/heads/master@{#315011}
-
mukai authored
The implementation of LineBreaker is mostly a straightforward porting of RenderTextWin's implementation. BUG=248597 R=ckocagil@chromium.org, msw@chromium.org TEST=manually, customized ash_shell Review URL: https://codereview.chromium.org/882643005 Cr-Commit-Position: refs/heads/master@{#315010}
-
stevenjb authored
BUG=442613 Review URL: https://codereview.chromium.org/884013007 Cr-Commit-Position: refs/heads/master@{#315009}
-
felt authored
This makes the download request limiter test work with both permission bubbles and infobars. The unit test is now parameterized so both types of prompts are now tested. Extra credit: if the user gesture policy changes in the future, look at PS1 to see how to make the tests pass with a different user gesture policy. Supercedes parts of: https://codereview.chromium.org/411503005/ https://codereview.chromium.org/341833004/ BUG=438758 Review URL: https://codereview.chromium.org/811163004 Cr-Commit-Position: refs/heads/master@{#315008}
-
lionel.g.landwerlin authored
BUG=455409 TEST=none Review URL: https://codereview.chromium.org/887223009 Cr-Commit-Position: refs/heads/master@{#315007}
-
carlosk authored
WebUIs were not properly being created when reusing the current RenderFrameHost. But while doing that I found an issue in RenderFrameHostManager::CreateSpeculativeRenderFrameHost where instead of setting an instance member I was mistakenly shadowing it with a same-named function member. This last fix caused another test to crash because the WebUI reuse logic was incorrect. Instead of checking if it should be reused when the navigation SiteInstance matched the current one, it was being done when they were different (what doesn't even makes sense). Due to these changes I also had to update how RFHM::CleanUpNavigation and UnsetSpeculativeRenderFrameHost work,so that the speculative WebUI member is always cleaned up even if a speculative RFH does not exist. Also renamed the speculative WebUI getter as it's not test-only anymore. With these changes these tests were fixed when PlzNavigate is enabled: RenderFrameHostManagerTest.EnableWebUIWithSwappedOutOpener RenderFrameHostManagerTest.WebUIInNewTab BUG=439423 Review URL: https://codereview.chromium.org/877343010 Cr-Commit-Position: refs/heads/master@{#315006}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/339cdbf..5245cb4 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/901413002 Cr-Commit-Position: refs/heads/master@{#315005}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/5c8a3fa..7a9fd74 TBR=dcheng@chromium.org,apavlov@chromium.org Review URL: https://codereview.chromium.org/881283005 Cr-Commit-Position: refs/heads/master@{#315004}
-
sdefresne authored
Move PageUsageData from the global namespace to the history namespace, fix forward-declarations, removing old unused ones. Remove unnecessary history:: prefix to refer to names in the history namespace from the code in the history namespace itself. Move anonymous namespace in implementation files as sub-namespace of the history namespace so that they can refer to name in history without using the history:: prefix. BUG=None TBR=dbeam@chromium.org TBR=jhawkins@chromium.org Review URL: https://codereview.chromium.org/896093004 Cr-Commit-Position: refs/heads/master@{#315003}
-
tobiasjs authored
The logic that this DCHECK checks is correct, but during hardware teardown the tracking information is also reset, even though the sync RequestDrawGL has not set up the tracking info that it is resetting, leaving the tracker in an unexpected state. Ideally we should be differentiating the DrawGL calls required for hardware teardown from the normal kModeProcess DrawGL calls, but that seems to require touching framework code, making it difficult to fix. BUG=451955 Review URL: https://codereview.chromium.org/902813003 Cr-Commit-Position: refs/heads/master@{#315002}
-
igsolla authored
This changes includes all the locale .pak files into the WebView apk when building it from the chromium tree, similarly to what we're doing when building it from the Android tree, see android_webview/Android.mk. BUG=405035 TESTED=Manual. Verified that the set of locales in the downstream and upstream SystemWebViewGoogle.apk is the same. Review URL: https://codereview.chromium.org/868673003 Cr-Commit-Position: refs/heads/master@{#315001}
-
megjablon authored
and renaming DataReductionProxyAuthRequestHandler to DataReductionProxyRequestOptions BUG=449665 Review URL: https://codereview.chromium.org/791493015 Cr-Commit-Position: refs/heads/master@{#315000}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#314999}
-
dcheng authored
The Google style guide states that only one of {virtual,override,final} should be used for each declaration, since override implies virtual and final implies both virtual and override. This patch was automatically generated with an OS=android build using a variation of https://codereview.chromium.org/598073004. BUG=417463 Review URL: https://codereview.chromium.org/871293003 Cr-Commit-Position: refs/heads/master@{#314998}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/27f398f..339cdbf CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/903943003 Cr-Commit-Position: refs/heads/master@{#314997}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/2fb8a57..5c8a3fa TBR=dcheng@chromium.org,apavlov@chromium.org Review URL: https://codereview.chromium.org/897363003 Cr-Commit-Position: refs/heads/master@{#314996}
-
fukino authored
This CL adds following operations for select items. - Clicking icons on list view toggles selection. - Clicking checkmarks on grid view toggles selection. - Clicking "Cancel selection" button on the toolbar unselects all selected items. BUG=402344 TEST=run browser_tests Review URL: https://codereview.chromium.org/884183006 Cr-Commit-Position: refs/heads/master@{#314995}
-
fukino authored
BUG=402344 TEST=Check that Google doc files don't have thumbnails on list view. Review URL: https://codereview.chromium.org/899313002 Cr-Commit-Position: refs/heads/master@{#314994}
-
hirono authored
Previously new metadata related codes use FileEntry as an input type in the annotation, but it should be Entry because they can take DirectoryEntry also. BUG=410766 TEST=None Review URL: https://codereview.chromium.org/897573003 Cr-Commit-Position: refs/heads/master@{#314993}
-
fukino authored
This CL changes default font size to comply with the design spec. BUG=402344 TEST=none Review URL: https://codereview.chromium.org/902663002 Cr-Commit-Position: refs/heads/master@{#314992}
-
thestig authored
BUG=161942 Review URL: https://codereview.chromium.org/894463003 Cr-Commit-Position: refs/heads/master@{#314991}
-
yawano authored
BUG=438050 TEST=out/Release/browser_tests --gtest_filter=FileManagerJsTest.ListThumbnailLoader Review URL: https://codereview.chromium.org/886503006 Cr-Commit-Position: refs/heads/master@{#314990}
-
sammc authored
This change adds support for monitoring stashed handles for being readable. This will be used to relaunch suspended extension processes when a persistent service sends a message or data to its client in the suspended extension process. BUG=389016 Review URL: https://codereview.chromium.org/648853007 Cr-Commit-Position: refs/heads/master@{#314989}
-
hirono authored
The CL adds new metadata model to DirectoryModel, and let DirectoryModel call the new metadata model's method to notify change of Entry. BUG=410766 TEST=None Review URL: https://codereview.chromium.org/892083004 Cr-Commit-Position: refs/heads/master@{#314988}
-
alexandrec authored
Review URL: https://codereview.chromium.org/885733003 Cr-Commit-Position: refs/heads/master@{#314987}
-
sheckylin authored
The CL lets GesturePropertyProvider decide device types based on a logic identical to the old inputcontrol script. This solves some regressions we met on hybrid devices. Contributed by sheckylin@chromium.org BUG=454697 TEST=samus ChromeOS build Review URL: https://codereview.chromium.org/902543002 Cr-Commit-Position: refs/heads/master@{#314986}
-