- 01 Dec, 2016 40 commits
-
-
renjieliu authored
BUG= Review-Url: https://codereview.chromium.org/2539333002 Cr-Commit-Position: refs/heads/master@{#435561}
-
meade authored
BUG=542537 Review-Url: https://codereview.chromium.org/2540013003 Cr-Commit-Position: refs/heads/master@{#435560}
-
napper authored
Made CSS white-space property use IndependentInherit, which is part of the process of making property inheritance faster. This change adds 1 bit to the size of ComputedStyle but significantly reduces the time for a recalc for independent-only changes involving whitespace. Tested using: third_party/WebKit/LayoutTests/fast/css/invalidation/independent-inheritance-fast-path.html BUG=622138 Review-Url: https://codereview.chromium.org/2538983002 Cr-Commit-Position: refs/heads/master@{#435559}
-
dominickn authored
BUG=None Review-Url: https://codereview.chromium.org/2542063002 Cr-Commit-Position: refs/heads/master@{#435558}
-
changwan authored
This can prevent the number of threads from growing when an app creates and destroys webviews. BUG=668692 Review-Url: https://codereview.chromium.org/2543893002 Cr-Commit-Position: refs/heads/master@{#435557}
-
dominickn authored
Contextual search on Android spins up a WebContents which talks to Google search. If Google search chooses to request a permission inside this WebContents, the modal prompt crashes due to a lack of a containing tab. This is not an issue with the standard infobar permission prompts as they do not have a dependency on a tab for display. This CL changes a DCHECK for a TabAndroid to an explicit conditional, which acts as though the permission request was dismissed if there is no active Tab for the requesting WebContents. BUG=668640 Review-Url: https://codereview.chromium.org/2538253002 Cr-Commit-Position: refs/heads/master@{#435556}
-
dmazzoni authored
This is an initial implementation of Select-to-speak. Given mouse events that are "captured" - currently by holding down Search - it draws a box around the area the user selects, and then speaks everything within that box based on its accessible name. This is not meant to be a final, complete implementation, just a good starting point to begin experimenting. Depends on: https://codereview.chromium.org/2493923002/ BUG=593887 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2509883002 Cr-Commit-Position: refs/heads/master@{#435555}
-
msw authored
AppListButton tracks per-display [target] visibility. (sets a new flag on Shown/Dismissed callbacks) Check widget/button state, not global shell state. Ignore dismissed app-list windows that are animating closed. Fix a ShelfLayoutManager test to actually catch this. BUG=654661 TEST=Shelf stays visible when the app-list is hidden. R=jamescook@chromium.org Review-Url: https://codereview.chromium.org/2534953006 Cr-Commit-Position: refs/heads/master@{#435554}
-
kylechar authored
Display configuration takes some time on real devices. Add in a 200ms delay from when Configure() is called to when the callback is triggered so off device timing is similar to on device timing. BUG=none Review-Url: https://codereview.chromium.org/2527263002 Cr-Commit-Position: refs/heads/master@{#435553}
-
tsergeant authored
This disables the 'focus and keyboard nav' test and re-enables the rest of HistoryListTest. BUG=669227 Review-Url: https://codereview.chromium.org/2545603003 Cr-Commit-Position: refs/heads/master@{#435552}
-
tzik authored
In download_to_file mode of resource loading, the resource handler needs to call ResourceDispatcherHostImpl::RegisterDownloadedTempFile when the file is created, and needs to call UnregisterDownloadedTempFile after the client handles the file. Otherwise, the file is deleted before the client uses it. However, MojoAsyncResourceHandler doesn't call them, and that causes layout test failure around XHR with responseType = 'blob'. This CL fixes that by adding the RDTF and UDTF pair, and refactors similar code in AsyncResourceHandler to share the same lifetime management of the downloaded file in ResourceDispatcherHostImpl. BUG=603396, 659917 Review-Url: https://codereview.chromium.org/2503813002 Cr-Commit-Position: refs/heads/master@{#435551}
-
hzl authored
In this cl, we are trying to add the logcat of each instrumentation test into the corresponding test result object, so that when we are checking the result of each test case, we would be able to see the corresponding logcat for that test case at the same time. The reason of reland is to fix the issue where environmental variables are not set. BUG=631213 Review-Url: https://codereview.chromium.org/2545653002 Cr-Commit-Position: refs/heads/master@{#435550}
-
sashab authored
Added initial_keyword flag to CSSProperties.in, which specifies the initial value for keyword-only properties generated in ComputedStyle. BUG=628043 Review-Url: https://codereview.chromium.org/2538493005 Cr-Commit-Position: refs/heads/master@{#435549}
-
chrome-cron authored
Cr-Commit-Position: refs/heads/master@{#435548} -
calamity authored
This CL hooks up the toolbar forward and backward buttons in grouped mode to change the search timeframe for week and month queries. BUG=589357 TBR=dbeam@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2481693002 Cr-Commit-Position: refs/heads/master@{#435547}
-
pdr authored
This patch switches to a create-or-update pattern for paint property updates of the local border box. This is a 6% improvement on large-table-collapsed-border-change-with-text [1]. [1] tools/perf/run_benchmark blink_perf.paint --browser=content-shell-release --pageset-repeat=5 --extra-browser-args=--enable-slimming-paint-v2 BUG=645667 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_layout_tests_slimming_paint_v2 Review-Url: https://codereview.chromium.org/2538273002 Cr-Commit-Position: refs/heads/master@{#435546}
-
azurewei authored
1) Make the menu panel have a width of 352px, same as the system menu. 2) Move up title row label 5px. BUG=663199 TEST=Verified on local build. Review-Url: https://codereview.chromium.org/2540103003 Cr-Commit-Position: refs/heads/master@{#435545}
-
kundaji authored
Map each URLRequest originating from a frame to its DataUseRecorder. Create a new DataUseRecorder for each URLRequest from Chrome services. Move DataUseRecorders from pending navigation map to render frame map when navigation commits. BUG=663532 Review-Url: https://codereview.chromium.org/2534023002 Cr-Commit-Position: refs/heads/master@{#435544}
-
tsergeant authored
This changes the spacing between cards from 20px to 16px. BUG=670049 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:closure_compilation Review-Url: https://codereview.chromium.org/2538333002 Cr-Commit-Position: refs/heads/master@{#435543}
-
lushnikov authored
Patch crrev.com/2534383002 introduced flexbox layout for suggestion items. However, it should also be more accurate with item flexing, which gets messed up in some rare cases. This patch wraps suggestion text in its own span so that it shrinks properly. BUG=669323 R=dgozman Review-Url: https://codereview.chromium.org/2535393004 Cr-Commit-Position: refs/heads/master@{#435542}
-
sashab authored
Added ordering warnings back for CSSValueKeywords.in, since the order in this file must match the order in CSSParserFastPaths until the fast paths file is generated. BUG=665272 Review-Url: https://codereview.chromium.org/2537393002 Cr-Commit-Position: refs/heads/master@{#435541}
-
skia-deps-roller authored
https://skia.googlesource.com/skia.git/+log/3a7492fc04d8..f447deea6289 $ git log 3a7492fc0..f447deea6 --date=short --no-merges --format='%ad %ae %s' 2016-11-29 mtklein support medium and high quality 2016-11-30 halcanary SkEncodeImage: no more link-time registration Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, see: http://www.chromium.org/developers/tree-sheriffs/sheriff-details-chromium#TOC-Failures-due-to-DEPS-rolls CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel TBR=brianosman@google.com Review-Url: https://codereview.chromium.org/2538083004 Cr-Commit-Position: refs/heads/master@{#435540}
-
rlanday authored
Now callers directly specify what type of pointer they want IDMap to hold using the template parameter. Part 1 is at https://codereview.chromium.org/2480293004/ BUG=647091 TBR=dbeam (for chrome/browser/ui/webui/options/certificate_manager_handler.cc) TBR=jam (for all other non-base/ changes) Review-Url: https://codereview.chromium.org/2496653002 Cr-Commit-Position: refs/heads/master@{#435539}
-
rdevlin.cronin authored
The message parameter source_tab_id is no longer used; remove it. By extension, also remove the opener_tab_id_ property from ExtensionMessagePorts. BUG=667584 Review-Url: https://codereview.chromium.org/2540533002 Cr-Commit-Position: refs/heads/master@{#435538}
-
rdevlin.cronin authored
Move the ChromeExtensionTestNotificationObserver and ExtensionTestNotificationObserver classes into the extensions namespace. BUG=None TBR=stevenjb@chromium.org Review-Url: https://codereview.chromium.org/2539623002 Cr-Commit-Position: refs/heads/master@{#435537}
-
Emily Hanley authored
BUG=chromium:663372 R=stip@chromium.org Review URL: https://codereview.chromium.org/2540743004 . Cr-Commit-Position: refs/heads/master@{#435536}
-
kozyatinskiy authored
This roll includes: - [inspector_protocol] always use weak pointer in DispatcherImpl::{command.name} [1] [1] https://codereview.chromium.org/2545613002/ BUG=chromium:668358 TBR=dgozman@chromium.org Review-Url: https://codereview.chromium.org/2538043003 Cr-Commit-Position: refs/heads/master@{#435535} -
lhchavez authored
There are some Chrome services that unconditionally try to call ARC code, and the latter will print stuff to the log if it's not enabled or avilable (yet). This change ensures that we only attempt to contact ARC when it is actually ready for the most chatty services: net and process. BUG=654038 TEST=Opted out of ARC, did not see any logs Review-Url: https://codereview.chromium.org/2541843003 Cr-Commit-Position: refs/heads/master@{#435534}
-
dpranke authored
This picks up various fixes noted by scottmg@chromium.org, thakis@chromium.org, and Twitter user @florpelier, as well as a few more things I wanted to clean up. R=scottmg@chromium.org, thakis@chromium.org, sdy@chromium.org BUG= Review-Url: https://codereview.chromium.org/2543503004 Cr-Commit-Position: refs/heads/master@{#435533}
-
rhalavati authored
Two updates are proposed for clang scripts: An optional parameter is added to run_tool.py called (tool-param) that is directly passed to the tool that is run. An optional parameter is added to generate_win_compdb.py to specify the build directory. Its default value is out/Debug so that it won't change the previous behavior. BUG=670072 Review-Url: https://codereview.chromium.org/2542563002 Cr-Commit-Position: refs/heads/master@{#435532}
-
qyearsley authored
This is a follow-up to http://crrev.com/2514253002. BUG=660580 Review-Url: https://codereview.chromium.org/2524653003 Cr-Commit-Position: refs/heads/master@{#435531}
-
vmpstr authored
This patch renames ImageDecodeController to ImageDecodeCache, along with software and gpu implementations. R=enne@chromium.org, ericrk@chromium.org CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_trusty_blink_rel Review-Url: https://codereview.chromium.org/2541183002 Cr-Commit-Position: refs/heads/master@{#435530}
-
estade authored
BUG=660445 Review-Url: https://codereview.chromium.org/2523783002 Cr-Commit-Position: refs/heads/master@{#435529}
-
jbroman authored
Have all overloads of webcrypto::AlgorithmImplementation::DeserializeKeyForClone check the params type. Presently neither this nor the calling code checks that the algorithm ID and key params type correspond correctly. This code already knows what the expected value is, so it seems a reasonable place to check. BUG=669649 Review-Url: https://codereview.chromium.org/2544533002 Cr-Commit-Position: refs/heads/master@{#435528}
-
nednguyen authored
BUG=chromium:669526 Review-Url: https://codereview.chromium.org/2534243002 Cr-Commit-Position: refs/heads/master@{#435527}
-
ikilpatrick authored
Review-Url: https://codereview.chromium.org/2536323003 Cr-Commit-Position: refs/heads/master@{#435526}
-
robertogden authored
In certain cases, it is important to be able to specify different command line arguments to chrome at the time the test is being run rather than what is in code. For example, running against a different proxy than is in the code. This CL turns on the handling for this functionality and fixes a few bugs with it. BUG=669956 Review-Url: https://codereview.chromium.org/2538773004 Cr-Commit-Position: refs/heads/master@{#435525}
-
shenghuazhang authored
Command line option '--gtest_also_run_disabled_tests' already exists in test_runner.py, should build the logic in local_device_gtest_run.py in order to run disabled tests. This CL also unify '--gtest_repeat' for instrumentation test options. BUG=669632 Review-Url: https://codereview.chromium.org/2544603002 Cr-Commit-Position: refs/heads/master@{#435524}
-
jiameng authored
BUG=542537 Review-Url: https://codereview.chromium.org/2542793002 Cr-Commit-Position: refs/heads/master@{#435523}
-
wangxianzhu authored
We need paint property tree for slimmingPaintInvalidation. BUG=646176 Review-Url: https://codereview.chromium.org/2540353002 Cr-Commit-Position: refs/heads/master@{#435522}
-