- 24 Feb, 2015 40 commits
-
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/7af3c4a..4d068d4 TBR=zmo@chromium.org,hiroshige@chromium.org Review URL: https://codereview.chromium.org/950823004 Cr-Commit-Position: refs/heads/master@{#317748}
-
horo authored
service_worker_037.wpr was recorded before we introduced the script path restriction (crbug.com/423983). This registration code in this record always fails. navigator.serviceWorker.register('/trained-to-thrill/static/js/sw.js', { scope: '/trained-to-thrill/' }) So we have to update the WPR file I recorded service_worker_038.wpr using this command. ./tools/perf/record_wpr --browser=exact --browser-executable=~/chromium/src/out/Debug/chrome --also-run-disabled-tests service_worker_page_set BUG=433943 TEST=./tools/perf/run_benchmark --output-format=chartjson --upload-results --browser-executable=~/chromium/src/out/Debug/chrome --also-run-disabled-tests service_worker.service_worker Review URL: https://codereview.chromium.org/906883003 Cr-Commit-Position: refs/heads/master@{#317747}
-
reveman authored
content: Add valid handle check to ChildDiscardableSharedMemoryManager::AllocateLockedDiscardableSharedMemory. This check allows us to distinguish between allocation failure on the browser side and failure to map the memory in the child process. BUG=460995 Review URL: https://codereview.chromium.org/939343003 Cr-Commit-Position: refs/heads/master@{#317746}
-
falken authored
The motivation behind this change is to: - not block the registration queue on a "while(true) {}" worker - mitigate SW's from eating too much CPU/battery without being stopped This adds a "ping" protocol from the browser to the worker thread. If the worker thread is busy executing JS it will fail to ack the ping. Each ping waits 30 seconds for a pong. If a pong is received, the next ping is sent after 10 seconds. Otherwise, the worker is stopped. This only stops workers that are busy executing synchronous JS. If the worker does something like repeatedly extend a Promise chain, it will still be able to ACK and live on. Remaining work is to set a time limit for an inflight request. Depends on https://codereview.chromium.org/930213002/ BUG=445150,372436 Review URL: https://codereview.chromium.org/912753002 Cr-Commit-Position: refs/heads/master@{#317745}
-
fsamuel authored
Ideally web_view.js show know as little as possible about the internals of WebView attributes and vice versa. This will allow WebView attributes to eventually become GuestView attributes that can be shared with other GuestViewContainer types. This CL takes us in that direction by plumbing attach/detach into attributes which can then decide how to respond to those events. BUG=none TBR=lazyboy@chromium.org Review URL: https://codereview.chromium.org/950963002 Cr-Commit-Position: refs/heads/master@{#317744}
-
fukino authored
Now that Files.app has own file-type icons with Material Design, many icons in theme_resources.grd are not in use. BUG=none TEST=full build and run browser_tests Review URL: https://codereview.chromium.org/937373002 Cr-Commit-Position: refs/heads/master@{#317743}
-
stanisc authored
The purpose of this change is to minimize chances of hitting crbug/456029. 1) Call ModelTypeToRootTag only when the root folder could potentially be created on the client i.e. model type is defined in client EntitySpecifics and it is one of supported model types. 2) Rename is_type_root_folder to is_client_creatable_type_root_folder to make it clear that the checks are specific to client created type root folders. 3) Narrow the scope of where is_client_creatable_type_root_folder has to be calculated. BUG=456029 Review URL: https://codereview.chromium.org/948113005 Cr-Commit-Position: refs/heads/master@{#317742}
-
dpranke authored
Update the libvpx GN build files with the cpu_arch -> current_cpu change: https://codereview.chromium.org/942153003 TBR=johannkoenig@google.com BUG=344767 Review URL: https://codereview.chromium.org/948193003 Cr-Commit-Position: refs/heads/master@{#317741}
-
fsamuel authored
In the Chrome signin page, we expect it to be possible to navigate on dragging URLs from outside of the content area into the content area. In <webview>, we do not wish to navigate the <webview> on link drop but the embedder. Currently navigation on drop is disabled within a <webview>. This CL provides a droplink event that the embedder can listen to and navigate when a link is dropped into a <webview> from outside of its bounds. Note that this behavior is not identical to other Chrome tabs. In other tabs, if a link is dropped onto a drop target, the page will not navigate. In this implementation, any external link drop will fire the droplink event. This is probably not important for the signin page however because no fields expect to take in links there. The plumbing in this patch is less disruptive so I'll leave at that unless there is a pressing need to plumb the navigation decision out of the guest Blink instance and up into the embedder. BUG=460757 Review URL: https://codereview.chromium.org/945333002 Cr-Commit-Position: refs/heads/master@{#317740}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/6bc1b5f..1a9600f CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=reed@google.com Review URL: https://codereview.chromium.org/917423008 Cr-Commit-Position: refs/heads/master@{#317739}
-
dpranke authored
TBR=rockot@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/949003003 Cr-Commit-Position: refs/heads/master@{#317738}
-
jaekyun authored
This CL is a follow-up to https://codereview.chromium.org/908033003/ to remove cc dependency from ui/base on android platform. BUG=458889 Review URL: https://codereview.chromium.org/929903002 Cr-Commit-Position: refs/heads/master@{#317737}
-
jrw authored
BUG= Review URL: https://codereview.chromium.org/946723002 Cr-Commit-Position: refs/heads/master@{#317736}
-
oshima authored
BUG=458416 Review URL: https://codereview.chromium.org/923273003 Cr-Commit-Position: refs/heads/master@{#317735}
-
slamm authored
After this only the startup benchmarks will have a dependency. The goal is to remove CanRunForPage entirely. session_restore has used CanRunForPage to select one page from the typical_25. The URL is not used because the navigation action is skipped. The only reason it is there is because there is a test when setting up Web Page Replay that the archive has the URL. BUG=440101 Review URL: https://codereview.chromium.org/808893002 Cr-Commit-Position: refs/heads/master@{#317734}
-
Sadrul Habib Chowdhury authored
Make the appropriate conversions between pixel-space and dip-space coordinates/sizes depending on the display's device scale factor. BUG=400837 R=pkotwicz@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/924853002 Cr-Commit-Position: refs/heads/master@{#317733}
-
Scott Graham authored
R=rmsousa@chromium.org TBR=beaudoin, binjin, kaliamoorthi, noms, rmsousa BUG=461160 Review URL: https://codereview.chromium.org/949953004 Cr-Commit-Position: refs/heads/master@{#317732}
-
tfarina authored
He seems to not work on Chromium anymore. BUG=None R=nsylvain@chromium.org Review URL: https://codereview.chromium.org/947843002 Cr-Commit-Position: refs/heads/master@{#317731}
-
horo authored
DevToolsClientBackend.StopChromeTracing() tries to call console.time & console.timeEnd. But in ServiceWorker telemetry tests, ServiceWorker may have already stopped by itself. This is causing the test flakiness. So this cl add checking if the context type is 'iframe', 'page' or 'webview'. BUG=433943 TEST=./tools/perf/run_benchmark --browser-executable=~/chromium/src/out/Debug/chrome --also-run-disabled-tests service_worker.service_worker Review URL: https://codereview.chromium.org/884573004 Cr-Commit-Position: refs/heads/master@{#317730}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/abc2d6b..7af3c4a TBR=zmo@chromium.org,hiroshige@chromium.org Review URL: https://codereview.chromium.org/938823006 Cr-Commit-Position: refs/heads/master@{#317729}
-
mazda authored
The definition of nacl_irt_icache was moved to irt.h in the NaCl repository, so irt_nonsfi.h is no longer necessary. BUG= https://code.google.com/p/nativeclient/issues/detail?id=4033 Review URL: https://codereview.chromium.org/935743004 Cr-Commit-Position: refs/heads/master@{#317728}
-
calamity authored
This CL fixes an issue where closing dialog boxes in the app list would not restore focus to the search box. This is fixed by refocusing the search box when the app list overlay is hidden. BUG=450922 Review URL: https://codereview.chromium.org/945373002 Cr-Commit-Position: refs/heads/master@{#317727}
-
tfarina authored
That should prevent it from be used in production code. BUG=280157 R=brettw@chromium.org Review URL: https://codereview.chromium.org/948143003 Cr-Commit-Position: refs/heads/master@{#317726}
-
jdduke authored
Currently, when an ObserverList iterator is rewound or reaches the end of the list, it will trigger list compacting. However, the majority of the time, no compacting is required as no elements were removed. Change the policy to only compact if an element was removed during list iteration, avoiding unnecessary O(N) list walks. BUG=440134 Review URL: https://codereview.chromium.org/943303005 Cr-Commit-Position: refs/heads/master@{#317725}
-
tfarina authored
BUG=None TEST=git cl presubmit -uv TBR=maruel@chromium.org,sky@chromium.org Review URL: https://codereview.chromium.org/948223002 Cr-Commit-Position: refs/heads/master@{#317724}
-
meacer authored
This CL prevents http: or https: urls from referring to file: urls as search descriptor xmls. Allowing urls to refer to other urls with the same scheme has been considered (e.g. a file: url referring to an OSDD xml from a file: url), but this currently doesn't work for file: urls because of http://b/863583, so is not implemented here. BUG=429838 Review URL: https://codereview.chromium.org/917313004 Cr-Commit-Position: refs/heads/master@{#317723}
-
chrome://device-logreillyg authored
Log events and debugging information related to HID devices through the device event log component so that these errors are visible at chrome://device-log. A DEVICE_PLOG macro has been added which includes the last reported system error in the log message. BUG=448901 Review URL: https://codereview.chromium.org/947663002 Cr-Commit-Position: refs/heads/master@{#317722}
-
tfarina authored
BUG=434363 TEST=git cl presubmit -uv R=kalman@chromium.org Review URL: https://codereview.chromium.org/942263002 Cr-Commit-Position: refs/heads/master@{#317721}
-
kundaji authored
Show menu item to view original image if the request could go over the data reduction proxy. BUG=456247 Review URL: https://codereview.chromium.org/944533002 Cr-Commit-Position: refs/heads/master@{#317720}
-
dmichael authored
It turns out that the permissions are working fine, but the documentation is inadequate. BUG=434430 Review URL: https://codereview.chromium.org/949543002 Cr-Commit-Position: refs/heads/master@{#317719}
-
dyen authored
Passed in argument was not meant to be deleted upon merge: https://codereview.chromium.org/920523002 BUG=457385 TEST=trybots Review URL: https://codereview.chromium.org/954503003 Cr-Commit-Position: refs/heads/master@{#317718}
-
ddorwin authored
Review URL: https://codereview.chromium.org/918463002 Cr-Commit-Position: refs/heads/master@{#317717}
-
jbauman authored
Surfaces should be feature-complete, so try enabling them on Windows, Linux, and Mac OS. They're still disabled on Chrome OS because they rely on single-threaded browser compositing, and on Android because they haven't been implemented there yet. BUG=334090 TBR=piman@chromium.org Review URL: https://codereview.chromium.org/923833002 Cr-Commit-Position: refs/heads/master@{#317716}
-
tapted authored
Some tests regressed in r316774 because the way edit commands were dispatched in BridgedContentView changed from going directly to the TextInputClient to instead go through the InputMethod. r316774 included a check added to views::Textfield to ensure any scheduled edit command had been processed before scheduling a new one. Some tests failed that check: Because the textfield did not have focus, the dispatch of the event that would commit the edit command was not being received. This CL ensures the textfield requests focus in the test. Fixes (mac-only) views_unittests: BridgedNativeWidgetTest.TextInput_MoveLeftRight BridgedNativeWidgetTest.TextInput_DeleteBackward BridgedNativeWidgetTest.TextInput_DeleteForward BUG=454353 Review URL: https://codereview.chromium.org/941943003 Cr-Commit-Position: refs/heads/master@{#317715}
-
watk authored
This value corresponds to media::VideoFrame::YV12HD which was added in a previous CL. BUG=None Review URL: https://codereview.chromium.org/948633002 Cr-Commit-Position: refs/heads/master@{#317714}
-
vollick authored
BUG=455586 Review URL: https://codereview.chromium.org/947613003 Cr-Commit-Position: refs/heads/master@{#317713}
-
alancutter authored
This patch changes tools/perf/run_benchmark to output the list command on stdout instead of stderr. This makes grepping for benchmarks easier. Note: The run command will still output the benchmark list on stderr if an invalid benchmark is specified. Review URL: https://codereview.chromium.org/948793002 Cr-Commit-Position: refs/heads/master@{#317712}
-
tapted authored
The TextInputClient is used to validate allowable operations in a textfield (e.g. cut/copy/paste). On a readonly textfield, Copy should work, but Cut/Paste should present to the user as being disabled. Currently, a read-only textfield returns null from GetTextInputClient(), making this validation impossible, except "inside" the textfield (e.g. Textfield::ShowContextMenuForView(..)). The logic originated in r80226, but doesn't seem to be for a specific reason. Note that TextInputClient::GetTextInputType() returns TEXT_INPUT_TYPE_NONE for readonly textfields, and a test is updated to check. BUG=454353 Review URL: https://codereview.chromium.org/919543003 Cr-Commit-Position: refs/heads/master@{#317711}
-
gunsch authored
R=tsepez@chromium.org BUG=336640 Review URL: https://codereview.chromium.org/942683003 Cr-Commit-Position: refs/heads/master@{#317710}
-
jdduke authored
Mips builds hit this warning when linking the mesa library with libc++. Temporarily disable the warning until a permanent solution can be found. BUG=456380 Review URL: https://codereview.chromium.org/898403003 Cr-Commit-Position: refs/heads/master@{#317709}
-