- 29 Apr, 2015 21 commits
-
-
dmazzoni authored
The DumpAccessibilityEvent* tests sometimes fail when there's an event on a ROLE_SYSTEM_WINDOW, but these events are out of our control for a non-interactive test, so just filter them out. BUG=none Review URL: https://codereview.chromium.org/1114683002 Cr-Commit-Position: refs/heads/master@{#327415}
-
mariakhomenko authored
Defers unblocking renderer's requests until the asynchronous activity and tab loading process is complete and we are ready to handle additional requests. Adds new android-specific API to resume the requests and web contents delegate API to allow the deferral for resuming renderer request handling. BUG=432562 Review URL: https://codereview.chromium.org/1095913002 Cr-Commit-Position: refs/heads/master@{#327414}
-
dpranke authored
Prior to this change, we were doing static builds. This will affect the following bots: - tryserver.v8: - v8_android_chromium_gn_dbg - tryserver.chromium.linux: - android_chromium_gn_compile_dbg - tryserver.blink: - android_blink_compile_dbg - chromium.webkit: - Android GN (dbg) R=cjhopman@chromium.org BUG=481714 Review URL: https://codereview.chromium.org/1108973002 Cr-Commit-Position: refs/heads/master@{#327413}
-
kmarshall authored
suspend state and waking it up. Make ProcessManager inherit from EventPageTracker. Add new WakeExtension method to ProcessManager. R=kalman@chromium.org,mfoltz@chromium.org BUG= Review URL: https://codereview.chromium.org/1096313003 Cr-Commit-Position: refs/heads/master@{#327412}
-
dpranke authored
The 'gn_all' target in src/BUILD.gn didn't actually build everything, which could be confusing. This patch renames the target to 'both_gn_and_gyp' which should make the intent clearer, and reworks the accompanyhing targets in both the GN and GYP builds to match. R=jam@chromium.org BUG= Review URL: https://codereview.chromium.org/1104213005 Cr-Commit-Position: refs/heads/master@{#327411}
-
lgarron authored
SchemeIsSecure was changed to SchemeIsCryptographic in https://codereview.chromium.org/1049953003 . BUG=362214 Review URL: https://codereview.chromium.org/1108673002 Cr-Commit-Position: refs/heads/master@{#327410}
-
kalman authored
sent from the same context. This adds 2 tests, one that has always been the case, and a second regression test which r325585 accidentally fixed. BUG=479951 R=rdevlin.cronin@chromium.org Review URL: https://codereview.chromium.org/1108203004 Cr-Commit-Position: refs/heads/master@{#327409}
-
rsleevi authored
SSL3 is dead, and while the about:flags still lives on, the fear of a need to remotely re-enable SSL3 is gone, and has passed without incident for several releases, so we can remove the supporting glue code. Also fix a style nit while here. BUG=427671 R=eroman@chromium.org Review URL: https://codereview.chromium.org/1111043002 Cr-Commit-Position: refs/heads/master@{#327408}
-
estade authored
Doing this requires adding a new listener interface on WindowAndroid. BUG=428087 Review URL: https://codereview.chromium.org/1112643004 Cr-Commit-Position: refs/heads/master@{#327407}
-
eroman authored
BUG=455942 Review URL: https://codereview.chromium.org/1111923002 Cr-Commit-Position: refs/heads/master@{#327406}
-
eroman authored
BUG=455942 Review URL: https://codereview.chromium.org/1109263002 Cr-Commit-Position: refs/heads/master@{#327405}
-
scottmg authored
FAILED: ninja -t msvc -e environment.x64 -- "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64\cl.exe" /nologo /showIncludes /FC @obj\base\win\base_static_win64.pe_image.obj.rsp /c ..\..\base\win\pe_image.cc /Foobj\base\win\base_static_win64.pe_image.obj /Fdobj\base\base_static_win64.cc.pdb d:\src\cr2\src\base\win\pe_image.cc(571): error C2220: warning treated as error - no 'object' file generated d:\src\cr2\src\base\win\pe_image.cc(571): warning C4311: 'reinterpret_cast': pointer truncation from 'LPVOID' to 'DWORD' d:\src\cr2\src\base\win\pe_image.cc(571): warning C4302: 'reinterpret_cast': truncation from 'LPVOID' to 'DWORD' d:\src\cr2\src\base\win\pe_image.cc(573): warning C4311: 'reinterpret_cast': pointer truncation from 'PVOID' to 'DWORD' d:\src\cr2\src\base\win\pe_image.cc(573): warning C4302: 'reinterpret_cast': truncation from 'PVOID' to 'DWORD' R=cpu@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/1117433003 Cr-Commit-Position: refs/heads/master@{#327404}
-
scottmg authored
[171->263/443 ~9] CXX obj\content\browser\content_browser.plugin_service_impl.obj FAILED: ninja -t msvc -e environment.x86 -- "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\cl.exe" /nologo /showIncludes /FC @obj\content\browser\content_browser.plugin_service_impl.obj.rsp /c ..\..\content\browser\plugin_service_impl.cc /Foobj\content\browser\content_browser.plugin_service_impl.obj /Fdobj\content\content_browser.cc.pdb d:\src\cr2\src\content\browser\plugin_service_impl.cc(842): error C2220: warning treated as error - no 'object' file generated d:\src\cr2\src\content\browser\plugin_service_impl.cc(842): warning C4302: 'reinterpret_cast': truncation from 'HANDLE' to 'ATOM' R=jam@chromium.org BUG=440500 Review URL: https://codereview.chromium.org/1111913002 Cr-Commit-Position: refs/heads/master@{#327403}
-
jbudorick authored
BUG=267773 Review URL: https://codereview.chromium.org/1105323002 Cr-Commit-Position: refs/heads/master@{#327402}
-
jdduke authored
The shutdown sequence for a given WebContents involves the ContentViewCore detaching itself from WebContentsViewAndroid. This in turn detaches the ContentViewCore from RenderWidgetHostViewAndroid. However, as the state of the ContentViewCore may be inconsistent during shutdown, calls into ContentViewCore during detachment may be unreliable. Avoid such calls by caching the WindowAndroid exposed by ContentViewCore; the window has stronger lifetime guarantees and can safely be used during detachment. BUG=479878,464642 Review URL: https://codereview.chromium.org/1103213003 Cr-Commit-Position: refs/heads/master@{#327401}
-
afakhry authored
Disabled for the official build of cros trunk for now. BUG=482121 TBR=yoshiki@chromium.org Review URL: https://codereview.chromium.org/1110883004 Cr-Commit-Position: refs/heads/master@{#327400}
-
jennyz authored
Fix the issue where the active output device is lost after the device suspend/resume without any active stream. BUG=478968 Review URL: https://codereview.chromium.org/1109793005 Cr-Commit-Position: refs/heads/master@{#327399}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/a832422..e9c60e7 TBR=pdr@chromium.org,caseq@chromium.org Review URL: https://codereview.chromium.org/1112733002 Cr-Commit-Position: refs/heads/master@{#327398}
-
jonross authored
Verify the behaviour of chrome.system.display.setDisplayProperties, while in TouchView mode. Changes applied to the screen rotation should enable the rotation lock, which would prevent accelerometer rotations. TEST=DisplayInfoProviderChromeosTest.SetRotationDuringMaximizeMode BUG=358900 Review URL: https://codereview.chromium.org/1109553003 Cr-Commit-Position: refs/heads/master@{#327397}
-
brianderson authored
This makes SingleThreadProxy behave like ThreadProxy. BUG=481436 Review URL: https://codereview.chromium.org/1113493007 Cr-Commit-Position: refs/heads/master@{#327396}
-
jbroman authored
Skia already calls save/restore on the canvas. BUG= Review URL: https://codereview.chromium.org/1116523002 Cr-Commit-Position: refs/heads/master@{#327395}
-
- 28 Apr, 2015 19 commits
-
-
jbauman authored
Roughly every resource transferred should be used, so reserve that much space in the set. This improves performance on the SurfaceAggregator perftests by around 10%. Review URL: https://codereview.chromium.org/1100713004 Cr-Commit-Position: refs/heads/master@{#327394}
-
tfarina authored
Tested on Mac with the following command lines: $ rm -rf out/ $ ./build/gyp_chromium $ ninja -C out/Debug sandbox_mac_unittests $ out/Debug/sandbox_mac_unittests BUG=138542 TEST=see above R=jln@chromium.org Review URL: https://codereview.chromium.org/1099393003 Cr-Commit-Position: refs/heads/master@{#327393}
-
johannkoenig authored
Restrict vp9 decoder to 16384x16384 https://codereview.chromium.org/1106303002 BUG=450939 Fix arm/LTO build https://codereview.chromium.org/1085023004 Hopefully fix AVX2 detection once and for all https://codereview.chromium.org/1104213004 BUG=480586 R=tomfinegan@chromium.org Review URL: https://codereview.chromium.org/1115503002 Cr-Commit-Position: refs/heads/master@{#327392}
-
rdevlin.cronin authored
BrowserActionsBarRedesignBrowserTest.OverflowedBrowserActionPopupTest is flaky on Mac bots. Disabling while investigating. Review URL: https://codereview.chromium.org/1111073003 Cr-Commit-Position: refs/heads/master@{#327391}
-
aurimas authored
Old behavior: Two images would get duplicated and user would infitintely scroll through two images. New behavior: We only show two images and user is bound to be between image one and two. BUG=394399 Review URL: https://codereview.chromium.org/1116483002 Cr-Commit-Position: refs/heads/master@{#327390}
-
jeremyim authored
The start and completion of the config retrieval requests will be logged, and made available to the chrome://net-internals/#bandwidth page. BUG=466753 Review URL: https://codereview.chromium.org/1105443003 Cr-Commit-Position: refs/heads/master@{#327389}
-
gburanov authored
use 'branding_path_component' to simplify branding in chrome main directory (and crash service) - part 2 Also in context of this review crash service is also using 'branding_path_component' Please take look at https://codereview.chromium.org/1090213002/patch/40001/50001 for details BUG= Review URL: https://codereview.chromium.org/1114453002 Cr-Commit-Position: refs/heads/master@{#327388}
-
kmarshall authored
R=xhwang@chromium.org BUG=464205 Review URL: https://codereview.chromium.org/1055403006 Cr-Commit-Position: refs/heads/master@{#327387}
-
rnephew authored
BUG=482137 Review URL: https://codereview.chromium.org/1116493002 Cr-Commit-Position: refs/heads/master@{#327386}
-
oshima authored
Allow reflector to copy textures for multiple displays. BUG=365662 Review URL: https://codereview.chromium.org/1108713004 Cr-Commit-Position: refs/heads/master@{#327385}
-
tfarina authored
These headers are intended to be consumed by tests only, not by production code and thus should not be listed in service_sources target. This makes the following errors disappear: ERROR at //gpu/command_buffer/service/gpu_scheduler_mock.h:9:11: Include not allowed. ^---------------------------------- It is not in any dependency of //gpu/command_buffer/service:service_sources The include file is in the target(s): //testing/gmock:gmock which should somehow be reachable. ERROR at //gpu/command_buffer/service/mocks.h:22:11: Include not allowed. ^---------------------------------- It is not in any dependency of //gpu/command_buffer/service:service_sources The include file is in the target(s): //testing/gmock:gmock which should somehow be reachable. Tested on Linux with the following command lines: $ gn gen out-gn/Debug $ gn check out-gn/Debug //gpu/command_buffer/service/* BUG=367595,376000 TEST=see above R=sievers@chromium.org Review URL: https://codereview.chromium.org/1114633003 Cr-Commit-Position: refs/heads/master@{#327384}
-
thakis authored
BUG=none TBR=brettw Review URL: https://codereview.chromium.org/1114623003 Cr-Commit-Position: refs/heads/master@{#327383}
-
jaekyun authored
https://codereview.chromium.org/1056913008 modified codes to carry over a user gesture bit for all the non-main frame request types. The same logic should be applied to AwResourceDispatcherHostDelegate. BUG=478972 Review URL: https://codereview.chromium.org/1106333002 Cr-Commit-Position: refs/heads/master@{#327382}
-
xhwang authored
This would help investigate a crash due to DCHECK. BUG=481640 TEST=none R=dalecurtis@chromium.org Review URL: https://codereview.chromium.org/1109183002 Cr-Commit-Position: refs/heads/master@{#327381}
-
wfh authored
Add extra parameter to BrowserChildProcessCrashed to pass the exit_code at time of crash/termination. Wire this into all the existing callers. Add a new child process watcher in chrome to be notified on child process crashes. This will confirm whether users with RESULT_CODE_INVALID_SANDBOX_STATE are crashing on background start (--no-startup-window) or not. This also adds required framework to paint a sad tab UI from this class in the future. BUG=472324, 453541 TEST=Apply patch in http://pastebin.com/uEDxngBa and verify histogram ChildProcess.InvalidSandboxStateCrash.NoStartupWindow is recorded. Review URL: https://codereview.chromium.org/1067733006 Cr-Commit-Position: refs/heads/master@{#327380}
-
sbc authored
Since base builds for both host and target so much ewt_manifest. Without this gyp will fail when GYP_CROSSCOMPILE=1 and target_arch=arm: gyp: Dependency 'S:\src\base\trace_event\etw_manifest\etw_manifest.gyp:etw_manifest#host' not found while trying to load target S:\src\base\base.gyp:base#host CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:linux_nacl_sdk;tryserver.chromium.mac:mac_nacl_sdk BUG=none Review URL: https://codereview.chromium.org/1103943002 Cr-Commit-Position: refs/heads/master@{#327379}
-
garykac authored
This also makes the Note at the top of the files (to keep the GYP and GN files in sync) a bit more noticeable. BUG= Review URL: https://codereview.chromium.org/1116463002 Cr-Commit-Position: refs/heads/master@{#327378}
-
mathp authored
The android implementation already uses the GOOD quality, rather than FAST. This positively affects the quality of the thumbnails shown on the New Tab Page. Description of GOOD, from code comments: Bilinear upscale + N * 50% bilinear downscales. This is still fast enough for most purposes and Image quality is nearly as good as the BEST option. BUG=481978 Review URL: https://codereview.chromium.org/1115433002 Cr-Commit-Position: refs/heads/master@{#327377}
-
erikwright authored
BUG=460512 Review URL: https://codereview.chromium.org/1110263002 Cr-Commit-Position: refs/heads/master@{#327376}
-