- 16 Apr, 2015 37 commits
-
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/dceaf644..67b98f43 Please follow these instructions for assigning/CC'ing issues: https://code.google.com/p/v8-wiki/wiki/TriagingIssues TBR=hablich@chromium.org,machenbach@chromium.org,yangguo@chromium.org,vogelheim@chromium.org Review URL: https://codereview.chromium.org/1088403002 Cr-Commit-Position: refs/heads/master@{#325388}
-
deepak.m1 authored
Code Cleanup for extension_prefs, as AddDisableReasons() is not required same behavior can be achieved by AddDisableReason(). BUG=475911 Review URL: https://codereview.chromium.org/1073153002 Cr-Commit-Position: refs/heads/master@{#325387}
-
ccameron authored
This applies to situations where we are opening a new window or failing to draw content in time during tab-switch. Make the RenderWidgetHostViewMac and its layers be transparent, instead of being the view's background color and white, respectively. For the RenderWidgetHostViewMac it was in error to set the layer's color to be the color specified by SetBackgroundColor -- the color specified by that method will go down to the renderer, and the renderer will produce frames with the appropriate background color. The theme color will come from the TabContentsContainerView. Update the computation of the resulting color to use mostly SkColor operations. BUG=470669 Review URL: https://codereview.chromium.org/1082143002 Cr-Commit-Position: refs/heads/master@{#325386}
-
weiliangc authored
Instead of TestSimpleTaskRunner, which DCHECKs when posting message from worker thread, use MessageLoop and set a timeout that is equivalent to CompositorLock's timemout. BUG=473507 TEST=run w/ --ui-enable-impl-side-painting Review URL: https://codereview.chromium.org/1081223002 Cr-Commit-Position: refs/heads/master@{#325385}
-
mariakhomenko authored
Review URL: https://codereview.chromium.org/1091683003 Cr-Commit-Position: refs/heads/master@{#325384}
-
ksakamoto authored
This adds browser tests that verify console message logged when a promise passed to waitUntil() or respondWith() is rejected. These tests are here because console outputs from SWs aren't testable with layout tests (crbug.com/456708). BUG=359423 Review URL: https://codereview.chromium.org/1081953004 Cr-Commit-Position: refs/heads/master@{#325383}
-
eranm authored
BUG=431057,442173 Review URL: https://codereview.chromium.org/1008473006 Cr-Commit-Position: refs/heads/master@{#325382}
-
gburanov authored
Please take a look at first part of this review and also at this conversation https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/xiuyMB5AiNY BUG= Review URL: https://codereview.chromium.org/1087883005 Cr-Commit-Position: refs/heads/master@{#325381}
-
gcasto authored
Currently if the form changes in any way between parsing and form submission any server overrides for the form will be ignored. Relax the matching to only take into account name and action for the form and name for the field. This is similar to how Autofill matches. BUG=476092 Review URL: https://codereview.chromium.org/1088973003 Cr-Commit-Position: refs/heads/master@{#325380}
-
Tomasz Mikolajewski authored
According to the newest mocks, the file systems will be managable from Files app. In order to do that, both of the events are required. TEST=None. BUG=474146 R=benwells@chromium.org Review URL: https://codereview.chromium.org/1088883002 Cr-Commit-Position: refs/heads/master@{#325379}
-
rsleevi authored
Add some new owners to make sure it gets some security attention BUG=none TBR=cbentzel (already reviewed) Review URL: https://codereview.chromium.org/1090643003 Cr-Commit-Position: refs/heads/master@{#325378}
-
dpranke authored
TBR=phajdan.jr@chromium.org BUG=454413 Review URL: https://codereview.chromium.org/1082323004 Cr-Commit-Position: refs/heads/master@{#325377}
-
dpranke authored
If one of the tools/mb files changes, mb analyze may not produce correct results (since the configs might change), so we should just build everything. Also, fix a dangling target for the android_gn trybot. TBR=phajdan.jr@chromium.org BUG=454413 Review URL: https://codereview.chromium.org/1092523002 Cr-Commit-Position: refs/heads/master@{#325376}
-
pcc authored
This flag causes unused argument errors when using LTO (or Clang's integrated assembler), and is not needed to disable executable stacks, as we are already passing -Wl,-z,noexecstack at link time, which is how executable stacks are already getting disabled on other platforms. BUG=407544 R=thakis@chromium.org TEST=Built libchromeshell.so with default GYP_DEFINES with and without this change, verified that binaries are equivalent Review URL: https://codereview.chromium.org/1091463002 Cr-Commit-Position: refs/heads/master@{#325375}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/4127337..86a890b TBR=mlamouri@chromium.org,dcheng@chromium.org Review URL: https://codereview.chromium.org/1089323002 Cr-Commit-Position: refs/heads/master@{#325374}
-
Daniel Cheng authored
This also includes several fixes for the plugin logic on Windows: - The banned directory check normalizes path separators. - The banned directory check now returns true for files that are considered system headers. - Diagnostics from the plugin are always reported as warnings. BUG=467287 R=thakis@chromium.org Committed: https://chromium.googlesource.com/chromium/src/+/26ba172e8543b9029f320600f3aeced40028ff20 Committed: https://chromium.googlesource.com/chromium/src/+/5b5d1269ade9eeb50875b20570ef3e0d8c5d95fb Review URL: https://codereview.chromium.org/1072203002 Cr-Commit-Position: refs/heads/master@{#325373}
-
shuchen authored
This basically brings back the original implementation of InputMethodGtk long time ago, which covered most of cases that haven't been covered by the current implementation (e.g. generate keypress event for the accent/dead keys). Due to limitations of Aura framework, it is hard to get the native window (e.g. XWindow). Therefore, gtk_im_context_set_cursor_position cannot be called at the appropriate time. The current InputMethodAuraLinux implementation workarounds it to leverage the key event, which carries the information about native window, and call set_client_window in DispatchKeyEvent(). The basic scenarios work but some special scenario cannot work. For example, iBus Pinyin IME tries to show the status-bar-UI at the cursor position without typing any keys. This cl keep the current logics for that and won't fix the issue. And this cl removes the keyup of 229 keycode, which is unnecessary. Therefore, for 229 keycode, the IMF will not try to pair the keydown and keyup. This cl adds some tests to avoid future regressions on basic scenarios which consider sync/async modes, ibus hacky behaviors, dead keys, multi-commits, etc. Note that the tests don't cover all possible scenarios as the worldwide IMEs with different IM modules (xim, ibus, etc.). TBR=sky@chromium.org BUG=463491,474828,125161,458179 TEST=Verified on local linux workstation. Review URL: https://codereview.chromium.org/1068093002 Cr-Commit-Position: refs/heads/master@{#325372}
-
dcheng authored
Revert of Build the Clang plugin on Windows. (patchset #7 id:120001 of https://codereview.chromium.org/1072203002/) Reason for revert: Rebase went horribly wrong... Original issue's description: > Build the Clang plugin on Windows. > > This also includes several fixes for the plugin logic on Windows: > - The banned directory check normalizes path separators. > - The banned directory check now returns true for files that are > considered system headers. > - Diagnostics from the plugin are always reported as warnings. > > BUG=467287 > R=thakis@chromium.org > > Committed: https://chromium.googlesource.com/chromium/src/+/26ba172e8543b9029f320600f3aeced40028ff20 > > Committed: https://chromium.googlesource.com/chromium/src/+/5b5d1269ade9eeb50875b20570ef3e0d8c5d95fb TBR=hans@chromium.org,thakis@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=467287 Review URL: https://codereview.chromium.org/1087423003 Cr-Commit-Position: refs/heads/master@{#325371}
-
jbauman authored
These test aggregating 20 surfaces with 100 quads and resources each. Opacity < 1 in one test prevents the Surfaces from all being merged into 1 renderpass. Review URL: https://codereview.chromium.org/1082103003 Cr-Commit-Position: refs/heads/master@{#325370}
-
brianderson authored
This will allow the DisplayScheduler to differentiate between a frame without any resources and one that should not be drawn. Some tests use frames without any resources and the DisplayScheduler was missinterpreting that as the Browser locking resources. BUG=467750, 476544 Review URL: https://codereview.chromium.org/1084313002 Cr-Commit-Position: refs/heads/master@{#325369}
-
khorimoto authored
Convert downloads_page.css to downloads_page_style.html. See http://goo.gl/vIGSCO for more information. BUG=477154 Review URL: https://codereview.chromium.org/1089703002 Cr-Commit-Position: refs/heads/master@{#325368}
-
mseaborn authored
BUG=none TEST=none Review URL: https://codereview.chromium.org/1059753007 Cr-Commit-Position: refs/heads/master@{#325367}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/221360a..639a828 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=jcgregorio@google.com Review URL: https://codereview.chromium.org/1085393002 Cr-Commit-Position: refs/heads/master@{#325366}
-
Daniel Cheng authored
This also includes several fixes for the plugin logic on Windows: - The banned directory check normalizes path separators. - The banned directory check now returns true for files that are considered system headers. - Diagnostics from the plugin are always reported as warnings. BUG=467287 R=thakis@chromium.org Committed: https://chromium.googlesource.com/chromium/src/+/26ba172e8543b9029f320600f3aeced40028ff20 Review URL: https://codereview.chromium.org/1072203002 Cr-Commit-Position: refs/heads/master@{#325365}
-
paulirish authored
BUG= Review URL: https://codereview.chromium.org/1091683002 Cr-Commit-Position: refs/heads/master@{#325364}
-
jrummell authored
BUG=468567 Review URL: https://codereview.chromium.org/1070253002 Cr-Commit-Position: refs/heads/master@{#325363}
-
mukai authored
TimeView should have enough space to show the time, but even if it doesn't assign enough space, it shouldn't replace a part of the text by elipsis (...). BUG=471297 R=stevenjb@chromium.org, oshima@chromium.org Review URL: https://codereview.chromium.org/1088353002 Cr-Commit-Position: refs/heads/master@{#325362}
-
orenb authored
BUG= Review URL: https://codereview.chromium.org/1073893005 Cr-Commit-Position: refs/heads/master@{#325361}
-
jbroman authored
These should provide a basic smoke test for real-world regressions from Slimming Paint phase 1. BUG=471873 Review URL: https://codereview.chromium.org/1075523002 Cr-Commit-Position: refs/heads/master@{#325360}
-
maxbogue authored
This bug was preventing Chrome from registering for GCM invalidations on Android, meaning that sync was never told to download new data. The bug was introduced by http://crrev.com/1048423005, where the ensureGcmIsInitialized line was removed from the SyncController constructor. The onFirstStart call was supposed to handle it, but from a clean start sync is disabled, so that case is not hit. This patch moves the ensureGcmIsInitialized call back to the constructor, and the test ensures that the call is made at some point during browser initialization. BUG=475299 Review URL: https://codereview.chromium.org/1081283003 Cr-Commit-Position: refs/heads/master@{#325359}
-
tsergeant authored
This replaces percent-encoding whitespace as a method to combat the use of crafted URL fragments to inject messages into the page info popup. By truncating the URL so that at most two lines of the fragment are shown, we prevent lengthy messages from being injected while minimising the effect on most URLs. BUG=466351 Review URL: https://codereview.chromium.org/1077483002 Cr-Commit-Position: refs/heads/master@{#325358}
-
chrome://net-internals/#bandwidthjeremyim authored
Remove most of the event specific rendering, and instead use key/value iteration and output into a table. Special case specific cases to render certain field types (net_error, bypass_type). BUG=477188 Review URL: https://codereview.chromium.org/1071393004 Cr-Commit-Position: refs/heads/master@{#325357}
-
dcaiafa authored
BUG=472269 Review URL: https://codereview.chromium.org/1055263005 Cr-Commit-Position: refs/heads/master@{#325356}
-
nednguyen authored
In order to move repaint to use the control code of TBM, we first need to remove the code that automatically issuing marker in smoothness_controller & make sure that all the pages that are paired with repaint must issue the markers themselves in the page. BUG=444703 Review URL: https://codereview.chromium.org/1083413002 Cr-Commit-Position: refs/heads/master@{#325355}
-
khorimoto authored
Convert network_summary.css to network_summary_style.html. See http://goo.gl/vIGSCO for more information. BUG=477154 Review URL: https://codereview.chromium.org/1073903004 Cr-Commit-Position: refs/heads/master@{#325354}
-
khorimoto authored
Convert *.css files to *_style.html files for the following custom elements: date_time_page, settings_drawer, settings_main, settings_menu, settings_page_header, and settings_ui. See http://goo.gl/vIGSCO for more information. BUG=477154 Review URL: https://codereview.chromium.org/1051763004 Cr-Commit-Position: refs/heads/master@{#325353}
-
dtu authored
Running modulefinder with just __init__ doesn't include everything, and having the entry points is more likely to include everything. BUG=None. TEST=tools/telemetry/find_dependencies | wc -l # == 3770, not 3719 Review URL: https://codereview.chromium.org/1089673002 Cr-Commit-Position: refs/heads/master@{#325352}
-
- 15 Apr, 2015 3 commits
-
-
sbc authored
Recently we started pulling in the arm_trusted 'toolchain' which is actually a small linux sysroot image so it contains all kinds of licenses in header files. This was the cause of a recent revert of NaCl DEPS roll: https://codereview.chromium.org/1089163003 BUG=none Review URL: https://codereview.chromium.org/1087283003 Cr-Commit-Position: refs/heads/master@{#325351}
-
mariakhomenko authored
This should not be used by anyone other that ExternalNavigationHandler. Review URL: https://codereview.chromium.org/1091653002 Cr-Commit-Position: refs/heads/master@{#325350}
-
erg authored
Huffington Post websites check that they have permission to pop up notifications. If we don't have this mock version, we crash. BUG=none Review URL: https://codereview.chromium.org/1093433002 Cr-Commit-Position: refs/heads/master@{#325349}
-