- 02 Feb, 2015 13 commits
-
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/47471cf..d9adfe6 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/893953002 Cr-Commit-Position: refs/heads/master@{#314111}
-
tfarina authored
BUG=None TEST=git cl presubmit -uv R=maruel@chromium.org TBR=sky@chromium.org Review URL: https://codereview.chromium.org/893923002 Cr-Commit-Position: refs/heads/master@{#314110}
-
raymes authored
We don't handle touch events in any special way in the plugin. Viewport operations all happen in the container page so we can skip handling them in the plugin. Review URL: https://codereview.chromium.org/889583005 Cr-Commit-Position: refs/heads/master@{#314109}
-
alexandrec authored
BUG=110020 Review URL: https://codereview.chromium.org/871403005 Cr-Commit-Position: refs/heads/master@{#314108}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#314107}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/51e29d1..97d3b72 TBR= Review URL: https://codereview.chromium.org/892913002 Cr-Commit-Position: refs/heads/master@{#314106}
-
alexandrec authored
BUG=110020 Review URL: https://codereview.chromium.org/865033002 Cr-Commit-Position: refs/heads/master@{#314105}
-
brettw authored
Targets will be removed until the bot is green. TBR=dpranke Review URL: https://codereview.chromium.org/886323002 Cr-Commit-Position: refs/heads/master@{#314104}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/152dc39..51e29d1 TBR= Review URL: https://codereview.chromium.org/891243002 Cr-Commit-Position: refs/heads/master@{#314103}
-
tfarina authored
Tested with the following configs: Linux: $ gn gen out_gn/Debug $ gn check out_gn/Debug Android: $ gn gen --args='os="android" cpu_arch="arm"' out_gn_android/Debug $ gn check out_gn_android/Debug Chromeos: $ gn gen --args='os="chromeos"' out_gn_chromeos/Debug $ gn check out_gn_chromeos/Debug BUG=367595, 376000 TEST=see above R=brettw@chromium.org TBR=sky@chromium.org Review URL: https://codereview.chromium.org/872243004 Cr-Commit-Position: refs/heads/master@{#314102}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/30d95bc..152dc39 TBR= Review URL: https://codereview.chromium.org/891893004 Cr-Commit-Position: refs/heads/master@{#314101}
-
shuchen authored
For suspended IME extension (e.g. XKB extension), don't awake it by IME events except onActivate. The IME extension should be awake by other events (e.g. runtime.onMessage) from its other pages. This is to save memory for steady state Chrome OS on which the users don't want any IME features. BUG=451627 TEST=Verified on linux_chromeos. Review URL: https://codereview.chromium.org/884713005 Cr-Commit-Position: refs/heads/master@{#314100}
-
jam authored
This brings in: b3a788e Fix GN PDFium build when building all. f8af677 Always use the FreeType headers included in PDFium. 7dc63e6 Fix heap buffer overflow in CPDF_SampledFunc::v_Call dc8c950 Don't export any OpenJPEG methods from PDFium. 71c24b8 Use system FreeType on Linux. b38a900 Track formhandles in EmbedderTest class itself 14b2bb0 Fix infinite recursion in CPDF_RenderStatus::RenderSingleObject(). 1d43e82 Add minimized test cases for stack exhaustion crash to repository. cedc562 Merge to Master: Add output scale factor command line parameter to pdfium_test. 90f9e61 Merge to Master: Cover fpdftext.h API with embeddertests. 506e6dc Add embedder test for stream length beyond end of file. TBR=tsepez Review URL: https://codereview.chromium.org/883913003 Cr-Commit-Position: refs/heads/master@{#314099}
-
- 01 Feb, 2015 24 commits
-
-
earthdok authored
MSan doesn't undestand shared memory, so a buffer that has been tainted with uninitialized values would still be considered uninitialized even after a write on the other end (the GPU). This results in confusing uninit reports in the renderer after readback. Doing an explicit check early should make those reports less confusing and less flaky. We might even find some real bugs! BUG=445745 R=zmo@chromium.org Review URL: https://codereview.chromium.org/867903004 Cr-Commit-Position: refs/heads/master@{#314098}
-
tfarina authored
Currently rebase_path() function takes up to three parameters, so passing a fourth won't work. This was probably due to the work done in: https://chromium.googlesource.com/chromium/src/+/ee55eaceea8d7632a59761c603af0f4503db00df BUG=434539 TEST=gn help rebase_path R=scottmg@chromium.org Review URL: https://codereview.chromium.org/892043004 Cr-Commit-Position: refs/heads/master@{#314097}
-
dmazzoni authored
BUG=440579 TBR=nasko@chromium.org NOPRESUBMIT=true NOTRY=true Review URL: https://codereview.chromium.org/884683003 Cr-Commit-Position: refs/heads/master@{#314096}
-
imcheng authored
Also fixed PresentationServiceAvailabilityListener interface. - fixed dtor naming and moved to public - GetPresentationUrl() is now a const function BUG=412331 Review URL: https://codereview.chromium.org/887293002 Cr-Commit-Position: refs/heads/master@{#314095}
-
brettw authored
Bots are still too slow. TBR=dpranke Review URL: https://codereview.chromium.org/889203002 Cr-Commit-Position: refs/heads/master@{#314094}
-
ricea authored
On DrMemory and Valgrind builds, it takes more than 1ms just to post the task inside UnlockEndpoint() and then enter the message loop, so the delayed task was being executed inside RunUntilIdle(). Remove the call to RunUntilIdle() and the check that the callback wasn't called inside it. The check at 314 is sufficient to verify that at least 1ms has passed, which in normal compiles means that a delay was applied. On DrMemory and Valgrind builds, the test may just verify that everything is running very slowly, but at least it will be deterministic. BUG=451999 TEST=net_unittests Review URL: https://codereview.chromium.org/878373002 Cr-Commit-Position: refs/heads/master@{#314093}
-
v8-autoroll authored
TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/887333002 Cr-Commit-Position: refs/heads/master@{#314092}
-
tfarina authored
This script should check the usage of scoped_ptr in files changed in the change list when uploading to codereview.chromium.org. That way we should avoid future regressions. BUG=None TEST=git cl presubmit -uv R=sky@chromium.org Review URL: https://codereview.chromium.org/867163003 Cr-Commit-Position: refs/heads/master@{#314091}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/3130d67..30d95bc TBR= Review URL: https://codereview.chromium.org/892003002 Cr-Commit-Position: refs/heads/master@{#314090}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/e137db8..47471cf CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/888353002 Cr-Commit-Position: refs/heads/master@{#314089}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/6a1bbc3..3130d67 TBR= Review URL: https://codereview.chromium.org/891203002 Cr-Commit-Position: refs/heads/master@{#314088}
-
chromeos-commit-bot authored
Cr-Commit-Position: refs/heads/master@{#314087}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/0b737c5..e137db8 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/877703003 Cr-Commit-Position: refs/heads/master@{#314086}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/fb47e17..6a1bbc3 TBR= Review URL: https://codereview.chromium.org/890163003 Cr-Commit-Position: refs/heads/master@{#314085}
-
shess authored
Import the source for 3.8.7.4 per README.chromium. This does not modify the build in any way, it is being landed before being enabled to keep the latter review focussed. BUG=340757 TBR=michaeln@chromium.org Review URL: https://codereview.chromium.org/883353008 Cr-Commit-Position: refs/heads/master@{#314084}
-
cjhopman authored
The CrashDumpManagerAndroid instance must be initialized before any child process is created. This change moves the initialization to PreThreadsCreate, which at the very least should be before the PROCESS_LAUNCHER thread (where the potentially evil child processes will be created). #nocrashes BUG=439322 Review URL: https://codereview.chromium.org/889083002 Cr-Commit-Position: refs/heads/master@{#314083}
-
xhwang authored
Also pass MediaPermission to ProxyDecryptor, in preparation for triggering user prompt from ProxyDecryptor for prefixed EME implementation. TBR=jam@chromium.org,aa@chromium.org BUG=446263 Review URL: https://codereview.chromium.org/887873003 Cr-Commit-Position: refs/heads/master@{#314082}
-
brettw authored
TBR=dpranke Review URL: https://codereview.chromium.org/890203002 Cr-Commit-Position: refs/heads/master@{#314081}
-
xhwang authored
Extensions are not supported on Android, so this code is dead. BUG=446263 Review URL: https://codereview.chromium.org/893723002 Cr-Commit-Position: refs/heads/master@{#314080}
-
v8-autoroll authored
TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/891963002 Cr-Commit-Position: refs/heads/master@{#314079}
-
brettw authored
Minor related GYP cleanup and added some missing dependencies and related targets to the GN build. Support for compiling unit_tests with no ENABLE_WEBRTC. Remove browser_action_drag_data_unittest.cc which is not compiled on any currently supported platform. BUG= Review URL: https://codereview.chromium.org/880873003 Cr-Commit-Position: refs/heads/master@{#314078}
-
jfb authored
Redo DEPS roll from: https://codereview.chromium.org/867463008/ Reverted in: https://codereview.chromium.org/889163003/ Because the hash was improperly abbreviated. This roll has the proper hash. I'm mildly troubled that all tests passed. This pulls in the following Native Client changes: f02226b: (bbudge@chromium.org) Disable mmap_unittest.cc tests on Windows 64 in Debug... 6bc00f6: (dschuff@chromium.org) Update upstream compiler_rt to HEAD and use official git mirror 55d212c: (phosek@chromium.org) Updates the tools Makefile to work with Git ccc9c66: (shyamsundarr@chromium.org) Add all remaining avx2 instructions except vgather. 9595661: (jfb@chromium.org) Enable -Werror for LLVM build aa51c35: (pcc@google.com) Disable -flto when compiling nacl_bootstrap_lib. 476c662: (jfb@chromium.org) PNaCl: Update Subzero and LLVM revision in pnacl/COMPONENT_REVISIONS 2f388a0: (dschuff@chromium.org) Enable SCons testing of arm-nacl-clang on the bots fea15c4: (bbudge@chromium.org) Disable mmap_unittest.cc tests on Windows 64 in Debug... BUG=none TEST=browser_tests and nacl_integration CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:linux_rel_precise32,linux_arm_compile,linux_nacl_sdk_build R= mseaborn@chromium.org, bradnelson@chromium.org Review URL: https://codereview.chromium.org/890173002 Cr-Commit-Position: refs/heads/master@{#314077}
-
rdsmith authored
Suggested from review in CL https://codereview.chromium.org/864923002/. BUG=None R=mmenke@chromium.org Review URL: https://codereview.chromium.org/877443002 Cr-Commit-Position: refs/heads/master@{#314076}
-
kalman authored
working (also By Google) Calendar extension. BUG=435290 R=aboxhall@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/890173003 Cr-Commit-Position: refs/heads/master@{#314075}
-
- 31 Jan, 2015 3 commits
-
-
v8-autoroll authored
TBR=machenbach@chromium.org Review URL: https://codereview.chromium.org/887283002 Cr-Commit-Position: refs/heads/master@{#314074}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/477efb1..fb47e17 TBR= Review URL: https://codereview.chromium.org/892813002 Cr-Commit-Position: refs/heads/master@{#314073}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/6bfef2d..0b737c5 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=fmalita@google.com Review URL: https://codereview.chromium.org/884753004 Cr-Commit-Position: refs/heads/master@{#314072}
-