- 01 Jun, 2016 40 commits
-
-
justincohen authored
Match .appex to wrapper.app-extension BUG= Review-Url: https://codereview.chromium.org/2029073002 Cr-Commit-Position: refs/heads/master@{#397247}
-
milko.leporis authored
Start using bundled gold as default linker for Linux MIPS, since gold in current bundled binutils (2.26) supports mips32. BUG=none TEST=Build Chromium for Linux MIPS Review-Url: https://codereview.chromium.org/2027173002 Cr-Commit-Position: refs/heads/master@{#397246}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/77276cd20e4e..857c0b7e4db6 $ git log 77276cd20..857c0b7e4 --date=short --no-merges --format='%ad %ae %s' TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2029203002 Cr-Commit-Position: refs/heads/master@{#397245}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2032603002 Cr-Commit-Position: refs/heads/master@{#397244}
-
wangxianzhu authored
After CHECK_DISPLAY_ITEM_CLIENT_ALIVENESS was enabled, we didn't get crashes in DisplayItemClient::~DisplayItemClient() when the DisplayItemClient should be alive. We still get crashes in PaintController::updateCacheGeneration() [1] which indicates that we still have short-lived DisplayItemClient but not catched by aliveness checking. This might happen if there are multiple PaintControllers (e.g. one created by SkPictureBuilder and another by GraphicsLayer). Separately track DisplayItemClient aliveness for each PaintController in order to catch the issue. [1] https://crash.corp.google.com/browse?q=custom_data.ChromeCrashProto.ptype%3D%27renderer%27%20AND%20custom_data.ChromeCrashProto.magic_signature_1.name%20like%20%27blink%3A%3APaintController%3A%3A%25%27%20AND%20product.version%3D%2753.0.2751.0%27&ignore_case=false&enable_rewrite=true&omit_field_name=&omit_field_value=&omit_field_opt=%3D&stbtiq=&reportid=20bc8a5c00000000&index=2#4 BUG=609218 Review-Url: https://codereview.chromium.org/2031623002 Cr-Commit-Position: refs/heads/master@{#397243}
-
sky authored
RootWindowLayoutManager was calling into the background, I changed the background to listen for bounds changes on the parent, which makes more sense. BUG=none TEST=none Review-Url: https://codereview.chromium.org/2032613002 Cr-Commit-Position: refs/heads/master@{#397242}
-
vmpstr authored
This patch changes |task_runner_| member in tile manager to be a raw pointer instead of a scoped_refptr. All the codepaths seem to guarantee that the task runner outlives tile manager, so there is no need to create a scoped_refptr a raw pointer at tile manager creation time. R=ericrk, reveman CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review-Url: https://codereview.chromium.org/2026663005 Cr-Commit-Position: refs/heads/master@{#397241}
-
eugenebut authored
Tests communication between WebUI page and the native code. When page is loaded it sends "syn" message to the native code, when native code receives "syn" it replies back with "ack", when page receives "ack" it replies back with "fin". Once "fin" is received the test succeeds. BUG=567809 TBR=thestig@chromium.org, Review-Url: https://codereview.chromium.org/2006273005 Cr-Commit-Position: refs/heads/master@{#396972} (cherry picked from commit dc9e9709) Review-Url: https://codereview.chromium.org/2028013003 Cr-Commit-Position: refs/heads/master@{#397240}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2027323002 Cr-Commit-Position: refs/heads/master@{#397239}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/e7978efc..b4b409b2 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=tryserver.blink:linux_blink_rel TBR=hablich@chromium.org,machenbach@chromium.org,yangguo@chromium.org,vogelheim@chromium.org Review-Url: https://codereview.chromium.org/2027293002 Cr-Commit-Position: refs/heads/master@{#397238}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2031713002 Cr-Commit-Position: refs/heads/master@{#397237}
-
moshayedi authored
We don't support ui::PointerEvents in mus+ash client side right now, so we need to convert ui::PointerEvent to ui::MouseEvent/ui::TouchEvent until we have a better solution. This CL adds constructors we need so we can do this conversion. Previously this conversion happened when we deserialized mojom::Event to ui::Event, but that didn't seem the correct place to do it, since we serialized ui::PointerEvent (and not touch/mouse events) to mojom::Event, and we should get the same kind of object when deserializing. BUG=615094 Review-Url: https://codereview.chromium.org/2029713002 Cr-Commit-Position: refs/heads/master@{#397236}
-
boliu authored
This is suspected to be the cause of null pointer crash in Android WebView when RenderProcessHostImpl::FromID unexpectedly returns null. Issue is RenderProcessHostImpl::DecrementWorkerRefCount does not check for run_renderer_in_process() like RemoveRoute. Move the check to beginning of Cleanup instead. BUG=616476 Review-Url: https://codereview.chromium.org/2029623002 Cr-Commit-Position: refs/heads/master@{#397235}
-
ianwen authored
A flaw was introduced in the snackbar refactoring, which led to several touch handling errors. This CL fixes several of the recently discovered bugs. BUG=616013,615826,614698,614614 Review-Url: https://codereview.chromium.org/2023053002 Cr-Commit-Position: refs/heads/master@{#397234}
-
jianli authored
Also move all offline client namespace constants into one central place. BUG=616231 TBR=mmenke@chromium.org Review-Url: https://codereview.chromium.org/2022283003 Cr-Commit-Position: refs/heads/master@{#397233}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2028993003 Cr-Commit-Position: refs/heads/master@{#397232}
-
zmo authored
With this roll, we can enable uniformapi/* and fbocompleteness.html tests. https://chromium.googlesource.com/external/khronosgroup/webgl.git/+log/2211435..97d0194 BUG= TEST=bots TBR=kbr@chromium.org,cwallez@chromium.org CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_optional_gpu_tests_rel;tryserver.chromium.mac:mac_optional_gpu_tests_rel;tryserver.chromium.linux:linux_optional_gpu_tests_rel Review-Url: https://codereview.chromium.org/2027873005 Cr-Commit-Position: refs/heads/master@{#397231}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2027303002 Cr-Commit-Position: refs/heads/master@{#397230}
-
gab authored
R=cpu@chromium.org,darin@chromium.org,jam@chromium.org,tsepez@chromium.org,jeremy@chromium.org (multiple owners as FYI for losing a teammate only need one stamp) BUG=He no longer works on Chrome and no longer reviews Review-Url: https://codereview.chromium.org/2027343002 Cr-Commit-Position: refs/heads/master@{#397229}
-
ssid authored
For background mode, just dump same details as light mode. BUG=613198 Review-Url: https://codereview.chromium.org/2013643005 Cr-Commit-Position: refs/heads/master@{#397228}
-
dougsteed authored
BUG= Review-Url: https://codereview.chromium.org/2025623007 Cr-Commit-Position: refs/heads/master@{#397227}
-
watk authored
This fixes a bug in gdb-add-index that meant it never cleaned up its temp files. Review-Url: https://codereview.chromium.org/2023363002 Cr-Commit-Position: refs/heads/master@{#397226}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2023003005 Cr-Commit-Position: refs/heads/master@{#397225}
-
changwan authored
InputMethodManagerService in Android platform sometimes access disk to record the IME state. This prevents crashes in dev. BUG=616283 Review-Url: https://codereview.chromium.org/2027923002 Cr-Commit-Position: refs/heads/master@{#397224}
-
jbudorick authored
BUG=616168 Review-Url: https://codereview.chromium.org/2025993002 Cr-Commit-Position: refs/heads/master@{#397223}
-
oshima authored
BUG=616564 TBR=amistry@chromium.org Review-Url: https://codereview.chromium.org/2027163003 Cr-Commit-Position: refs/heads/master@{#397222}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2027313002 Cr-Commit-Position: refs/heads/master@{#397221}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2031673002 Cr-Commit-Position: refs/heads/master@{#397220}
-
erg authored
After 532d3841, we need to also check for MOUSE_MOVED, not just POINTER_MOVED. BUG=603369 Review-Url: https://codereview.chromium.org/2027283002 Cr-Commit-Position: refs/heads/master@{#397219}
-
mahmadi authored
BUG=563722 Review-Url: https://codereview.chromium.org/2032453003 Cr-Commit-Position: refs/heads/master@{#397218}
-
wangxianzhu authored
BUG=604144,396825,607185,587094,155836,602933 TBR=wkorman@chromium.org Review-Url: https://codereview.chromium.org/2025243002 Cr-Commit-Position: refs/heads/master@{#397217}
-
stip authored
BUG=525873, 606066 Review-Url: https://codereview.chromium.org/2027873002 Cr-Commit-Position: refs/heads/master@{#397216}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2031693002 Cr-Commit-Position: refs/heads/master@{#397215}
-
jamescook authored
Calls to set shelf state should go through Shelf, not ShelfLayoutManager. * Move all calls to SetAutoHideBehavior() and SetAlignment() to Shelf instead of ShelfLayoutManager. * Add Shelf::GetVisibilityState() and Shelf::GetAutoHideState() and prefer using them to accessing ShelfLayoutManager directly. * Remove ShelfLayoutManager::GetAutoHideBehavior(). * Rename variables mis-named "shelf" to shelf_widget, shelf_layout_manager, etc. so they match their actual types. No functional changes. BUG=615502 TEST=ash_unittests Review-Url: https://codereview.chromium.org/2017413002 Cr-Commit-Position: refs/heads/master@{#397214}
-
gab authored
Change automated with clang-tidy (details @ https://crbug.com/612843#c13) BUG=612843 Review-Url: https://codereview.chromium.org/2023353002 Cr-Commit-Position: refs/heads/master@{#397213}
-
oshima authored
BUG=616556 TBR=esprehn@chromium.org Review-Url: https://codereview.chromium.org/2028203002 Cr-Commit-Position: refs/heads/master@{#397212}
-
nektar authored
There are pages that attach click handlers to elements that are found inside links, and screen readers might try to click such elements. Our existing doDefaultAction logic wasn't handling this possibility. For example, there might be a graphic inside a link and the screen reader might invoke the default action on the graphic. BUG=615904 R=dmazzoni@chromium.org Review-Url: https://codereview.chromium.org/2021953002 Cr-Commit-Position: refs/heads/master@{#397211}
-
Rebaseline Bot authored
https://chromium.googlesource.com/chromium/src/+/d501ee220 BUG=613118 TBR=eae@chromium.org Review URL: https://codereview.chromium.org/2026403002 . Cr-Commit-Position: refs/heads/master@{#397210}
-
yuweih authored
This finishes up the refactorization of the JNI interface. Scheduled tasks inside a session will not be lingering after the session ends. BUG=526336 Committed: https://crrev.com/800991e54ced74fc425843070a1941827af5b787 Cr-Commit-Position: refs/heads/master@{#396036} Review-Url: https://codereview.chromium.org/2007403002 Cr-Commit-Position: refs/heads/master@{#397209}
-
catapult-deps-roller authored
https://chromium.googlesource.com/external/github.com/catapult-project/catapult.git/+log/e1916b6e9756..77276cd20e4e $ git log e1916b6e9..77276cd20 --date=short --no-merges --format='%ad %ae %s' TBR=catapult-sheriff@chromium.org Review-Url: https://codereview.chromium.org/2025103004 Cr-Commit-Position: refs/heads/master@{#397208}
-