- 15 Oct, 2014 40 commits
-
-
vmiura authored
The Nexus 5 throttles CPU clock quickly under load, going from 2.27GHz down to 1.19GHz. Current Performance Dashboard results show this, as they tend to ping-pong between best & worst thermal states. This CL turns on all 4 cores on N5, and limits CPU to 1.19GHz which matches scaling under high load. It also limits GPU from 450MHz down to 200Mhz. BUG=383566 Review URL: https://codereview.chromium.org/652343002 Cr-Commit-Position: refs/heads/master@{#299770}
-
creis authored
The request stats are kept per process, and we were incorrectly transferring the entire process's stats when only a single request was being transferred. BUG=423570 TEST=Visit a page with 2 cross-site iframes using --site-per-process. Review URL: https://codereview.chromium.org/648803002 Cr-Commit-Position: refs/heads/master@{#299769}
-
slamm authored
BUG= Review URL: https://codereview.chromium.org/660523004 Cr-Commit-Position: refs/heads/master@{#299768}
-
ckocagil authored
BUG=321868 TBR=msw Review URL: https://codereview.chromium.org/630583002 Cr-Commit-Position: refs/heads/master@{#299767}
-
hans authored
Update the plugin cmake files to explicitly depend on Clang. When we moved to the approach of building tools and plugins inside the LLVM build in https://codereview.chromium.org/615083006/, that dependency was lost. We should find a better way to do this eventually. Also move the code to clear the CHROME_TOOLS_SHIM_DIR earlier in the script to avoid having it affect the bootstrap build. BUG=420674 NOTRY=true Review URL: https://codereview.chromium.org/630163005 Cr-Commit-Position: refs/heads/master@{#299766}
-
pvalenzuela authored
This CL does the following: 1) Re-enables two test cases in sync_errors_test.cc and converts them to use FakeServer. ErrorWhileSettingUp and BirthdayErrorUsingActionableErrorTest. Note that ErrorWhileSettingUp still fails on Chrome OS, so a separate (disabled) case has been created. 2) Adds a feature to FakeServer where triggered errors are sent back to the client on every other request (as opposed to every request). 3) FakeServer::TriggerError() now returns a bool to indicate success. 4) Removes dead code (unused as a result of the conversion to FakeServer) from SyncTest. BUG=400806,406545 Review URL: https://codereview.chromium.org/650463003 Cr-Commit-Position: refs/heads/master@{#299765}
-
John Abd-El-Malek authored
TBR=raymes Review URL: https://codereview.chromium.org/659853002 Cr-Commit-Position: refs/heads/master@{#299764}
-
David Benjamin authored
Dummy change primarily to kick the GPU Mac Builder's timestamps. BUG=none R=dcheng@chromium.org Review URL: https://codereview.chromium.org/646773006 Cr-Commit-Position: refs/heads/master@{#299763}
-
dtrainor authored
- Add assets for xxxhdpi - Add some missing assets for other dpis. BUG=403506 Review URL: https://codereview.chromium.org/655743003 Cr-Commit-Position: refs/heads/master@{#299762}
-
earthdok authored
BUG=423873 R=erg@chromium.org Review URL: https://codereview.chromium.org/661593002 Cr-Commit-Position: refs/heads/master@{#299761}
-
zmo authored
BUG=421695 TEST=gpu win debug bots go green TBR=kbr@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/646313003 Cr-Commit-Position: refs/heads/master@{#299760}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/157f36d..0e08fc1 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=rmistry@google.com Review URL: https://codereview.chromium.org/641313004 Cr-Commit-Position: refs/heads/master@{#299759}
-
John Abd-El-Malek authored
They got slower because of http://src.chromium.org/viewvc/chrome?view=rev&revision=292457 which readded --test-launcher-batch-limit=1 R=maruel@chromium.org Review URL: https://codereview.chromium.org/658893002 Cr-Commit-Position: refs/heads/master@{#299758}
-
rockot authored
BUG=398671 Review URL: https://codereview.chromium.org/657693002 Cr-Commit-Position: refs/heads/master@{#299757}
-
reveman authored
Switch to using LazyInstanceTraits instead of classes named SharedState for the purpose of initializing a DiscardableMemoryManager instance with a certain set of parameters. BUG=422953 Review URL: https://codereview.chromium.org/650233002 Cr-Commit-Position: refs/heads/master@{#299756}
-
agl authored
In order to address the POODLE attack, some large deployments of Chrome may wish to disable SSLv3 before we make it a default. Equally, they may need to preserve SSLv3 when we disable it by default. BUG=419870 Review URL: https://codereview.chromium.org/649373002 Cr-Commit-Position: refs/heads/master@{#299755}
-
noms authored
The User Manager is not a browser window, so the only way it can stay open while all browser windows are closed is by having an AutoKeepAlive. This means, however that if the User Manager is showing, "Exit Chrome" from the wrench menu will have no affect. The solution is to close the User Manager first, then exit as before. BUG=423099 TEST=Start Chrome with --enable-new-avatar-menu. Select "Switch Person" from the avatar menu. Select "Exit" from the hot dog menu. Chrome should exit. Review URL: https://codereview.chromium.org/658753003 Cr-Commit-Position: refs/heads/master@{#299754}
-
Chris Palmer authored
Unfortunately, it is not possible to link directly to the Date & Time Settings app on iOS. BUG=394993 R=felt@chromium.org, rohitrao@chromium.org Review URL: https://codereview.chromium.org/654643003 Cr-Commit-Position: refs/heads/master@{#299753}
-
sgurun authored
BUG=336846 The logic to create a view-source URL from a non-view-source URL has the incorrect assumption that the URL path includes both the query and the fragment parts. This causes these parts to be repeated after the transformation. Review URL: https://codereview.chromium.org/655023002 Cr-Commit-Position: refs/heads/master@{#299752}
-
dcheng authored
BUG=423621 Review URL: https://codereview.chromium.org/659713003 Cr-Commit-Position: refs/heads/master@{#299751}
-
danakj authored
Previously we subtracted the interest_rect_over_tiles from the invalid_rect when looking to see what invalidation would not be recorded but this computation is wrong. Instead, we need to expand the invalidation to the bounds of the tiles it touches (including tiles it touches on borders). Then we can subtract the interest rect expanded to the bounds of tiles it touches (including tiles it touches on borders). This makes each expansion match the iteration of the given rect where we include borders. If a tile is touched only on the border by invalidation, but the tile is not touched even on a border by the interest rect, we want to expand the invalidation to cover that tile. R=enne, vmpstr BUG=421729 Review URL: https://codereview.chromium.org/657913002 Cr-Commit-Position: refs/heads/master@{#299750}
-
kalman authored
behaviour. BUG=409319 R=mek@chromium.org Review URL: https://codereview.chromium.org/657143002 Cr-Commit-Position: refs/heads/master@{#299749}
-
dcheng authored
BUG=423621 Review URL: https://codereview.chromium.org/656093004 Cr-Commit-Position: refs/heads/master@{#299748}
-
tengs authored
BUG=385719 Review URL: https://codereview.chromium.org/616233002 Cr-Commit-Position: refs/heads/master@{#299747}
-
teravest authored
These application IDs no longer need access to the private socket interface now that https://code.google.com/p/chromium/issues/detail?id=308259 is resolved. BUG=234789 Review URL: https://codereview.chromium.org/652293004 Cr-Commit-Position: refs/heads/master@{#299746}
-
davidben authored
This was split out from https://codereview.chromium.org/519533002/ StreamHandle is now split into a StreamHandle and StreamInfo. StreamHandle only manages the stream URL. StreamInfo also contains the headers and other metadata that the streams_private mechanism uses. StreamResourceHandler is also split out into a StreamWriter so other resource handlers may also use it. BUG=376015 Review URL: https://codereview.chromium.org/625993002 Cr-Commit-Position: refs/heads/master@{#299745}
-
jsbell authored
Since Service Workers can intercept off-origin requests for controlled pages, a controlled page at http://a.example.com/ that requests a favicon from http://b.example.com would give the SW the opportunity to taint the browser's favicon cache for http://b.example.com, While we determine how (or if) we should restructure the favicon cache, just bypass the SW for favicon loads. R=horo@chromium.org,mkwest@chromium.org,jochen@chromium.org BUG=422250 Review URL: https://codereview.chromium.org/654713002 Cr-Commit-Position: refs/heads/master@{#299744}
-
tonyg authored
I notice a common pattern on the perf bots where on test fails, then all subsequent tests on that shard fail, but the device is magically back on the next run. So I suspect that the device is recovering itself, perhaps after a reboot. BUG= Review URL: https://codereview.chromium.org/649423002 Cr-Commit-Position: refs/heads/master@{#299743}
-
boliu authored
Android WebView parent compositor runs a thread without an message loop, ie MessageLoop[Proxy]::current returns null. This means any WrapCallback will crash immediately when called. This is a hack-ish fix to just check for this case and call through immediately, as the client thread and the gpu thread will be the same. BUG= Review URL: https://codereview.chromium.org/655963002 Cr-Commit-Position: refs/heads/master@{#299742}
-
dcheng authored
BUG=423621 Review URL: https://codereview.chromium.org/657013003 Cr-Commit-Position: refs/heads/master@{#299741}
-
slamm authored
Add benchmark_unittest.py that tests benchmark options. BUG=522596 Review URL: https://codereview.chromium.org/653233002 Cr-Commit-Position: refs/heads/master@{#299740}
-
dcheng authored
BUG=423621 Review URL: https://codereview.chromium.org/655133002 Cr-Commit-Position: refs/heads/master@{#299739}
-
gcasto authored
BUG=421707 Review URL: https://codereview.chromium.org/643493003 Cr-Commit-Position: refs/heads/master@{#299738}
-
rvargas authored
BUG=419210, 423634 R=cpu@chromium.org, eroman@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/632833002 Cr-Commit-Position: refs/heads/master@{#299737}
-
kundaji authored
Provide a method in google_api_keys to expose data reduction proxy auth token to non-mobile builds. BUG=412884 Review URL: https://codereview.chromium.org/635013003 Cr-Commit-Position: refs/heads/master@{#299736}
-
gcasto authored
Bug introduced in crrev.com/0716f6. DROP COLUMN syntax does not exist in SQLite. BUG=423716 Review URL: https://codereview.chromium.org/662443002 Cr-Commit-Position: refs/heads/master@{#299735}
-
mcasas authored
See crash trace in the bug. BUG=423664 Review URL: https://codereview.chromium.org/655293002 Cr-Commit-Position: refs/heads/master@{#299734}
-
clholgat authored
BUG=422422 Review URL: https://codereview.chromium.org/653703002 Cr-Commit-Position: refs/heads/master@{#299733}
-
aboxhall authored
BUG=309681 Review URL: https://codereview.chromium.org/642633004 Cr-Commit-Position: refs/heads/master@{#299732}
-
morrita authored
On Windows, GetFileHandleForProcess() can fail. This CL handles that case instead of just doing CHECK(). R=viettrungluu@chromium.org BUG=419139 Review URL: https://codereview.chromium.org/654113002 Cr-Commit-Position: refs/heads/master@{#299731}
-