- 12 May, 2015 40 commits
-
-
msw authored
Serve the build dir when origin is 'localhost'. (so runners can access those output dir .mojos) Build apptests and runner apk for mandoline:all. BUG=486220 TEST=For Android: clobber, build mandoline:all; apptests can run. R=sky@chromium.org Review URL: https://codereview.chromium.org/1138933004 Cr-Commit-Position: refs/heads/master@{#329509}
-
jonross authored
Revert of Have Notifications appear over docked windows (patchset #4 id:60001 of https://codereview.chromium.org/1121893004/) Reason for revert: varkha@ noticed that this change will cause the virtual keyboard to obscure the notifications. Which I confirmed on my local branch. Reverting before the regression is released. I'll work on a followup change that also accounts for the keyboard region. Original issue's description: > Have Notifications appear over docked windows > > Update AshPopupAlignmentDelegate calculations of its work area. > > When windows are docked this reduces the work area for windows. > AshPopupAlignmentDelegate uses the work area to determine the positioning of > notifications. Update this calculation to include the docked region. > > TEST=AshPopupAlignmentDelegateTest.DockedWindow > BUG=284574 > > Committed: https://crrev.com/5b4e72c6ad0924d64d5eb9a10e063bc9334e95b2 > Cr-Commit-Position: refs/heads/master@{#329486} TBR=oshima@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=284574 Review URL: https://codereview.chromium.org/1135323002 Cr-Commit-Position: refs/heads/master@{#329508}
-
afakhry authored
The delay to start updating the wallpaper after rotating the screen used to be 2 seconds which was also accompanied by unnecessary clearing of the wallpaper cache resulting in an ugly visual effect. Now we reduced the delay to only 100 ms and we only clear the cache when we add another display. BUG=359654 TEST=manual Review URL: https://codereview.chromium.org/1131243006 Cr-Commit-Position: refs/heads/master@{#329507}
-
erg authored
This creates an android_hooks.cc file, which we could currently share, but probably won't want to long term, as every time we add something to core_services, we'll have to merge their implementation in. BUG=477435 Review URL: https://codereview.chromium.org/1133543005 Cr-Commit-Position: refs/heads/master@{#329506}
-
jlklein authored
BUG= Review URL: https://codereview.chromium.org/1128723004 Cr-Commit-Position: refs/heads/master@{#329505}
-
davidben authored
Revert of Roll src/third_party/boringssl/src 68de407:de12d6c (patchset #3 id:40001 of https://codereview.chromium.org/1132443004/) Reason for revert: http://build.chromium.org/p/chromium.linux/builders/Android%20Arm64%20Builder%20%28dbg%29/builds/17339 Decent chance this will need to be re-uploaded manually, but let's see... Original issue's description: > Roll src/third_party/boringssl/src 68de407:de12d6c > > Summary of changes available at: > https://boringssl.googlesource.com/boringssl/+log/68de407..de12d6c > > This also removes update_gypi_and_asm.py in favor of the script inside > BoringSSL proper. > > BUG=none > > Committed: https://crrev.com/45248985036de1238c29d195b583797319a7020f > Cr-Commit-Position: refs/heads/master@{#329500} TBR=agl@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=none Review URL: https://codereview.chromium.org/1128293004 Cr-Commit-Position: refs/heads/master@{#329504}
-
nednguyen authored
After this patch, "./tools/perf/run_benchmark smoothness_key_silk_cases" will list out "smoothness.key_silk_cases" as the top matched benchmark. BUG=482090 Review URL: https://codereview.chromium.org/1138933003 Cr-Commit-Position: refs/heads/master@{#329503}
-
tfarina authored
In those cases |node| should not be NULL. R=sky@chromium.org Review URL: https://codereview.chromium.org/1124103005 Cr-Commit-Position: refs/heads/master@{#329502}
-
bryaneyler authored
Also removes some outdated histograms that weren't supposed to be in the public histogram list. See bug 18595525. BUG=20493841 Review URL: https://codereview.chromium.org/1131673008 Cr-Commit-Position: refs/heads/master@{#329501}
-
davidben authored
Summary of changes available at: https://boringssl.googlesource.com/boringssl/+log/68de407..de12d6c This also removes update_gypi_and_asm.py in favor of the script inside BoringSSL proper. BUG=none Review URL: https://codereview.chromium.org/1132443004 Cr-Commit-Position: refs/heads/master@{#329500}
-
benwells authored
BUG=486575 Review URL: https://codereview.chromium.org/1132333003 Cr-Commit-Position: refs/heads/master@{#329499}
-
davidben authored
Follow-up to https://codereview.chromium.org/1128153003/. Rather than query all keys and checking the slot afterwards, just look up keys in the slot directly. BUG=478777 Review URL: https://codereview.chromium.org/1139533002 Cr-Commit-Position: refs/heads/master@{#329498}
-
avi authored
BUG=369661 TEST=No whammies! Review URL: https://codereview.chromium.org/1136663004 Cr-Commit-Position: refs/heads/master@{#329497}
-
alemate authored
Chrome Apps cannot switch UI language, so we need to initialize apps after app_locale is set correctly. This CL splits ProfileImpl::OnPrefsLoaded into two steps (the former and OnLocaleReady), adding intermediate call to switch to correct locale. Also Profile is added as parameter to InputMethodChanged() observers. chromeos::locale_util::SwitchLanguage() now updates default input methods for user profile, not currently active set. TBR=dmazzoni@chromium.org BUG=469268 TEST=manual Review URL: https://codereview.chromium.org/1055863002 Cr-Commit-Position: refs/heads/master@{#329496}
-
hubbe authored
BUG=177163 Review URL: https://codereview.chromium.org/1128253005 Cr-Commit-Position: refs/heads/master@{#329495}
-
rtenneti authored
supported in cronet to fix a crash bug in cronet. BUG=487355 R=mef@chromium.org, rch@chromium.org Review URL: https://codereview.chromium.org/1138943002 Cr-Commit-Position: refs/heads/master@{#329494}
-
davidben authored
SPDY's multiplexing is incompatible with the renego + client auth hack. The old implementation also assumed that the SpdyStream was still alive which isn't true. We could attempt save a copy of it, but that doesn't resolve the fundamental incompatibility of the hack. Instead https://codereview.chromium.org/1131763002/ disables renegotiation, so this codepath should be impossible. BUG=462283 Review URL: https://codereview.chromium.org/1128873008 Cr-Commit-Position: refs/heads/master@{#329493}
-
dmazzoni authored
I think this regressed due to: https://codereview.chromium.org/1119923002 BUG=486851 Review URL: https://codereview.chromium.org/1141573003 Cr-Commit-Position: refs/heads/master@{#329492}
-
davidben authored
That state isn't needed. When an operation fails in OpenSSL, SSL_get_error tells you exactly what event it was waiting for. BUG=none Review URL: https://codereview.chromium.org/1136813002 Cr-Commit-Position: refs/heads/master@{#329491}
-
tbarzic authored
BUG=477106 Review URL: https://codereview.chromium.org/1126383003 Cr-Commit-Position: refs/heads/master@{#329490}
-
asvitkine authored
This allows experimenting with increasing the variations seed fetch period. BUG=483057 Review URL: https://codereview.chromium.org/1119893003 Cr-Commit-Position: refs/heads/master@{#329489}
-
erikchen authored
When FastNavigationProfileExtender was first written, it was intended to navigate to the top 10,000 sites in Alexa. Many of these sites would fail to load for unexpected reasons. Furthermore, the exceptions raised by Telemetry when these errors occured were frequently less than useful. As a result, FastNavigationProfileExtender was catching many fatal exceptions but treating them as non-fatal exceptions. When FastNavigationProfileExtender is used on Windows, and Chrome crashes in a way that invokes the Windows Error dialog, attempts by Telemetry to communicate with the crashed instance of Chrome can cause Python to stall. I did not investigate the details, but I suspect this is related to the implementation of the thirdparty websocket library that Telemetry uses. This CL makes the FastNavigationProfileExtender treat fatal exceptions appropriately, instead of ignoring them. BUG=477375 Review URL: https://codereview.chromium.org/1124543006 Cr-Commit-Position: refs/heads/master@{#329488}
-
tsepez authored
This pulls in a new API that allows chrome to stop including private PDFium headers. Chrome is modified to use it, and the inculde rules are updated to reflect a "public header only" policy. BUG=486818 Review URL: https://codereview.chromium.org/1129223005 Cr-Commit-Position: refs/heads/master@{#329487}
-
jonross authored
Update AshPopupAlignmentDelegate calculations of its work area. When windows are docked this reduces the work area for windows. AshPopupAlignmentDelegate uses the work area to determine the positioning of notifications. Update this calculation to include the docked region. TEST=AshPopupAlignmentDelegateTest.DockedWindow BUG=284574 Review URL: https://codereview.chromium.org/1121893004 Cr-Commit-Position: refs/heads/master@{#329486}
-
michaelpg authored
This hasn't been thoroughly tested yet. Once more pages are ready and the rest of the structure is in place I will look more closely at how pages are selected BUG=485381 Review URL: https://codereview.chromium.org/1141603003 Cr-Commit-Position: refs/heads/master@{#329485}
-
dmazzoni authored
BUG=467550 Review URL: https://codereview.chromium.org/1126563003 Cr-Commit-Position: refs/heads/master@{#329484}
-
thakis authored
Exporting a class on Windows forces instantiation of default constructor, copy constructor, and sundry similar other functions. The clang plugin then complains about these not being out-of-line, even if they're not referred to from anywhere. Since having this only on Windows is annoying, we're suppressing these warnings on exported classes. In this case however, the inner classes STSState and PKPState aren't exported, and their copy constructors are only instantiated because their outer class _is_ exported and has STSState and PKPState members. This cannot be easily suppressed, and it's also the only place in the whole codebase where this happens. So just export these two structs to make the plugin happy in Windows component builds. BUG=467287,483986 Review URL: https://codereview.chromium.org/1124233005 Cr-Commit-Position: refs/heads/master@{#329483}
-
jaekyun authored
Intent.parseUri can throw other excpetions like NumberFormatException. So we need to catch Exception to avoid crash. BUG=484336 Review URL: https://codereview.chromium.org/1134163002 Cr-Commit-Position: refs/heads/master@{#329482}
-
lgarron authored
We recently introduced SchemeIsCryptographic() and IsOriginSecure(), which are meant to replace SchemeIsSecure(). IsOriginSecure() roughly means "do we trust this content not to be tampered with before it reaches the user?" [1] This is a higher-level definition that corresponds to the new "privileged contexts" spec. [2] SchemeIsCryptographic() [3] is close to the old definition of SchemeIsSecure(), and literally just checks if the scheme is a cryptographic scheme (HTTPS or WSS as of right now). The difference is that SchemeIsCryptographic() will not consider filesystem URLs secure. [1] https://code.google.com/p/chromium/codesearch#chromium/src/content/public/common/origin_util.h&sq=package:chromium&type=cs&l=19&rcl=143099866 [2] https://www.chromium.org/Home/chromium-security/prefer-secure-origins-for-powerful-new-features and https://w3c.github.io/webappsec/specs/powerfulfeatures/ [3] https://code.google.com/p/chromium/codesearch#chromium/src/url/gurl.h&sq=package:chromium&type=cs&l=250&rcl=1430998666 BUG=362214 Review URL: https://codereview.chromium.org/1135693002 Cr-Commit-Position: refs/heads/master@{#329481}
-
juncai authored
This patch removes error_console accessor from ExtensionSystem. It can be its own browser context keyed service. And it can be built by its new factory. BUG= Review URL: https://codereview.chromium.org/1139643005 Cr-Commit-Position: refs/heads/master@{#329480}
-
ssid authored
Revert of Adding total available size of heap in v8 isolate memory dump provider. (patchset #1 id:1 of https://codereview.chromium.org/1129403003/) Reason for revert: The HeapStatistics::total_available_size returned by v8 API doesn't return the correct value right now. It only returns the sum of available size of 4 spaces only. So, this should land after the API gets fixed. Original issue's description: > Adding total available size of heap in v8 isolate memory dump provider. > > The total available size is now returned by GetHeapStatistics api. > This CL uses the value in the dump provider to show the value in > other_spaces segment of the memory dump. > > BUG=481504 > > Committed: https://crrev.com/9ad94e6e06201059c08d67b9d9ab4a30a766b541 > Cr-Commit-Position: refs/heads/master@{#329303} TBR=jochen@chromium.org,picksi@chromium.org,primiano@chromium.org BUG=481504 Review URL: https://codereview.chromium.org/1134233002 Cr-Commit-Position: refs/heads/master@{#329479}
-
kpschoedel authored
BUG=487056 Review URL: https://codereview.chromium.org/1124383005 Cr-Commit-Position: refs/heads/master@{#329478}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/9a048f2..80f95a7 TBR=dpranke@chromium.org,alancutter@chromium.org Review URL: https://codereview.chromium.org/1140753002 Cr-Commit-Position: refs/heads/master@{#329477}
-
jlklein authored
Note that I did not add the checkbox compiled_resources.gyp to third_party/closure_compiler/compiled_resources.gyp because there are still some errors to dig through. BUG=486240 Review URL: https://codereview.chromium.org/1112403006 Cr-Commit-Position: refs/heads/master@{#329476}
-
tbarzic authored
EasyUnlockTpmKeyManager should not start poking TPM on worker thread before TPM initialization is finished on IO thread in order to prevent IO thread being blocked during startup waiting for easy signin key pair being created. BUG=464524 TEST=Easy signin works after initializing easy unlock and signin in once. Review URL: https://codereview.chromium.org/1138123003 Cr-Commit-Position: refs/heads/master@{#329475}
-
michaelpg authored
This brings paper-icon-button v0.8.0 into third_party/polymer/v0_8. BUG=485381 Review URL: https://codereview.chromium.org/1136293002 Cr-Commit-Position: refs/heads/master@{#329474}
-
wfh authored
BUG=380227 Review URL: https://codereview.chromium.org/1130793006 Cr-Commit-Position: refs/heads/master@{#329473}
-
wychen authored
This measures time spent in DistillPageImpl(), which is mostly ExecuteJavaScript(). This includes JavaScript compilation and execution. We already have DomDistiller.Time.DistillationTotal, but it is measured within JavaScript. Review URL: https://codereview.chromium.org/1131493005 Cr-Commit-Position: refs/heads/master@{#329472}
-
bnc authored
Add two unittests to test the condition that triggers ERR_REQUEST_FOR_SECURE_RESOURCE_OVER_INSECURE_QUIC. BUG= Review URL: https://codereview.chromium.org/1135103003 Cr-Commit-Position: refs/heads/master@{#329471}
-
fserb authored
Fix infinite loop bug on javascript. BUG=486879 Review URL: https://codereview.chromium.org/1132113005 Cr-Commit-Position: refs/heads/master@{#329470}
-