- 19 May, 2015 40 commits
-
-
rch authored
and change the DeterministicSockets to not implement AsyncSocket. This helps make clear using the type system that the Deterministic classes are distinct from the non-Deterministic classes. Review URL: https://codereview.chromium.org/1135553003 Cr-Commit-Position: refs/heads/master@{#330590}
-
bnc authored
Introduce QuicStreamFactoryTest::DefaultProofVerifyDetails(), a helper function to set up a ProofVerifyDetailsChromium object with a default cert loaded. BUG=474217 Review URL: https://codereview.chromium.org/1142953002 Cr-Commit-Position: refs/heads/master@{#330589}
-
maxbogue authored
updateAccount() is always called on startup with the signed in account, so the removePeriodicSync() call will be hit even for already signed in users when the app restarts. BUG=480688 Review URL: https://codereview.chromium.org/1148613002 Cr-Commit-Position: refs/heads/master@{#330588}
-
ericrk authored
Disabling ForceReclaimResource on BeginCommit when using ui impl side painting had the unintended consequence of breaking Display::Draw's mechanism for not drawing while an OutputSurface was between Commit/Swap. Re enabling this for now. Tracking handling this in a more robust way in crbug.com/489515. BUG=481656,489515 Review URL: https://codereview.chromium.org/1139823008 Cr-Commit-Position: refs/heads/master@{#330587}
-
kpschoedel authored
BUG=489446 Review URL: https://codereview.chromium.org/1147843003 Cr-Commit-Position: refs/heads/master@{#330586}
-
mmenke authored
The tests were re-entrantly reusing a TestCompletionCallback subclass in a weird manner, which has now been fixed. Also fix a WebSocket test modelled after them. BUG=114130 Review URL: https://codereview.chromium.org/1132313004 Cr-Commit-Position: refs/heads/master@{#330585}
-
erikchen authored
There's no reason that an interrupt to a dup() should cause a SharedMemory operation to fail. BUG= Review URL: https://codereview.chromium.org/1138113006 Cr-Commit-Position: refs/heads/master@{#330584}
-
peter authored
For both desktop Chrome and Android we need to support a mechanism for synchronizing open notifications. For desktop the most important case is where Chrome just started up, where there won't be any notifications since the message center is owned by Chrome. For Android, there are more cases, since the platform hosts displaying the notifications and informs Chrome through Intents of mutations. This patch leaves synchronization there mostly out of scope, while still laying the early groundwork towards supporting this. BUG=442143 Review URL: https://codereview.chromium.org/1127013008 Cr-Commit-Position: refs/heads/master@{#330583}
-
thestig authored
- NULL -> nullptr - prepend g_ to global variables - fix misc nits. Review URL: https://codereview.chromium.org/1134153003 Cr-Commit-Position: refs/heads/master@{#330582}
-
mrunal.kapade authored
Without above change it breaks the build for Crosswalk which is dependent on content and components like devtools_http_handler. This is somehow not evident on Chrome or Content Shell builds which might be including base/values.h through some other includes. R=pfeldman@chromium.org BUG= Review URL: https://codereview.chromium.org/1137243005 Cr-Commit-Position: refs/heads/master@{#330581}
-
pbond authored
BUG=455974 Review URL: https://codereview.chromium.org/1133353006 Cr-Commit-Position: refs/heads/master@{#330580}
-
bengr authored
Task posts in Data Saver logic were delaying initialization unnecessarily in Cronet, and consequently, the first request after initialization wasn't necessarily proxied. This CL makes the initialization logic synchronous when Data Saver's UI and IO task runners are on the same thread. BUG=461910 Review URL: https://codereview.chromium.org/1143503005 Cr-Commit-Position: refs/heads/master@{#330579}
-
gunsch authored
R=lcwu@chromium.org BUG=391045 Review URL: https://codereview.chromium.org/1142513004 Cr-Commit-Position: refs/heads/master@{#330578}
-
ricea authored
The lookup table for sniffing text/plain messages for binary characters was 256 bytes in size. The information it encoded could be stored in 32 bits. Use a 32-bit lookup table instead of the 256-byte lookup table. This reduces binary size. This change is mostly performance neutral; micro-benchmarks show no statistically significant change on Android. Micro-benchmarks on high-performance Intel processors show an additional cost of around 400ns, apparently due to branch mis-prediction. However, real-world performance is likely to be dominated by the time taken to load the table into CPU cache, which the new implementation should win easily. Also add a micro-benchmark test. BUG= TEST=net_unittests Review URL: https://codereview.chromium.org/1058003005 Cr-Commit-Position: refs/heads/master@{#330577}
-
kelvinp authored
This CL - Adds an unregister method to the remoting.WindowShape so that clientUI can unhook itself. This is a preparation work for the in-DOM reconnect window. - Adds an centerToDesktop() method to center a DOM element to the union of desktop rectangle. BUG=486888 Review URL: https://codereview.chromium.org/1143453007 Cr-Commit-Position: refs/heads/master@{#330576}
-
aruslan authored
BUG=473205 Review URL: https://codereview.chromium.org/1147783002 Cr-Commit-Position: refs/heads/master@{#330575}
-
eugenis authored
Flaky failures on the ChromeOS/MSan bot. BUG=475516 TBR=xiyuan@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1142963002 Cr-Commit-Position: refs/heads/master@{#330574}
-
erikchen authored
When compiling Objective C, warns if a method is used whose availability is newer than the deployment target. BUG=471823 Review URL: https://codereview.chromium.org/1140423002 Cr-Commit-Position: refs/heads/master@{#330573}
-
jianli authored
This is not longer needed since we only guard the API under _api_features. This extra guard is causing the test failures in officla builds since extensions::ScopedCurrentChannel does not affect the regular chrome channel settings. BUG=489368 TEST=existing tests Review URL: https://codereview.chromium.org/1131793011 Cr-Commit-Position: refs/heads/master@{#330572}
-
maxbogue authored
Tests various behaviors for the passphrase creation UI; specifically when error messages are displayed and when submission succeeds. BUG=480604 Review URL: https://codereview.chromium.org/1133453010 Cr-Commit-Position: refs/heads/master@{#330571}
-
maxbogue authored
This change is motivated by some complex test flakiness issues that were discovered in http://crrev.com/1118833002. Making it impossible to store a reference means that if we overwrite it for tests, we know everyone is then using the overwritten version. The approach here is to make every public method static and take the context as an argument, so it can initialize the inner object if necessary. This CL is part 1/3 and leaves in deprecated versions of all the methods. In part 2/3 the downstream uses of AndroidSyncSettings will be changed, and in part 3/3 the deprecated methods will be removed upstream. BUG=480604 Review URL: https://codereview.chromium.org/1138013008 Cr-Commit-Position: refs/heads/master@{#330570}
-
brucedawson authored
Review URL: https://codereview.chromium.org/1096303003 Cr-Commit-Position: refs/heads/master@{#330569}
-
andresantoso authored
Exclude techcrunch.com from power.top_25 . It is not suitable for this benchmark because it does not consistently become quiescent within 60 seconds. BUG=489214 CQ_EXTRA_TRYBOTS=tryserver.chromium.perf:linux_perf_bisect;tryserver.chromium.perf:mac_perf_bisect;tryserver.chromium.perf:win_perf_bisect;tryserver.chromium.perf:android_nexus5_perf_bisect Review URL: https://codereview.chromium.org/1138243003 Cr-Commit-Position: refs/heads/master@{#330568}
-
eugenis authored
BUG=489779 TBR=jam@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1142093003 Cr-Commit-Position: refs/heads/master@{#330567}
-
anthonyvd authored
BUG=466799 Review URL: https://codereview.chromium.org/1091363002 Cr-Commit-Position: refs/heads/master@{#330566}
-
anthonyvd authored
This design is based on this mock: https://drive.google.com/a/chromium.org/file/d/0B-DVbqI3huZGZGhIcTFtRWRTSTA/view?usp=sharing BUG=458664 TEST= 1. Launch chrome and make sure there is more than one available profile. 2. Left-click on the Avatar Button. 3. A tutorial bubble should be displayed informing the user they can right-click the button to see other users. 4. Close the bubble without dismissing the tutorial, for example by clicking in the content area. 5. Reopening the Avatar Menu should still display the tutorial until it is explicitly dismissed (clicking the X or the "Ok, got it!" button) or until the user right clicks the button. 6. Once dismissed, the tutorial should never be shown again. Review URL: https://codereview.chromium.org/1120013003 Cr-Commit-Position: refs/heads/master@{#330565}
-
gangwu authored
Do not let the invalidations service to fall back to XMPP if GCM is disabled, since we already finished traansite from GCM to XMPP, and XMPP do not have prepare for such load spike. Since Sync have backoff mechanism, so if GCM server some how disabled, sync will retry it later. BUG=479300 Review URL: https://codereview.chromium.org/1127393005 Cr-Commit-Position: refs/heads/master@{#330564}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/55b88ca..89aeb69 TBR=hiroshige@chromium.org,szager@chromium.org Review URL: https://codereview.chromium.org/1142233002 Cr-Commit-Position: refs/heads/master@{#330563}
-
lliabraa authored
The callback updates the |visible| property to NO so clients can correctly determine if the context menu has been dismissed. BUG=489121 Review URL: https://codereview.chromium.org/1144873002 Cr-Commit-Position: refs/heads/master@{#330562}
-
enne authored
A number of cc unit tests have started checking property tree output, primarily visible_rect_from_property_trees but also needs_rebuild on the trees. Because of this, these tests now depend on running the property tree code, so setting verify_property_trees=false forces these tests to run only CDP code which causes them to fail. Therefore, convert these specific tests to use property tree updates directly. This also requires a PrecalculateMetaInformation function for LayerImpl, as LayerTreeHostCommonTest.SkippingSubtreeImpl touched LayerImpl properties that could only theoretically be changed from the main thread. In the future, I think all layer tree host common tests will need to go down the property tree update path, but (in my opinion) it's not worth doing that until we have property trees everywhere. This patch is just a step in that direction to unblock property trees for the compositor thread first. R=ajuma@chromium.org,vollick@chromium.org BUG=481585 Review URL: https://codereview.chromium.org/1136643006 Cr-Commit-Position: refs/heads/master@{#330561}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/9b4b91f5..4b91f76 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=bungeman@google.com Review URL: https://codereview.chromium.org/1130763009 Cr-Commit-Position: refs/heads/master@{#330560}
-
estade authored
1) file manager's chrome web store widget 2) wallpaper gallery spinner BUG=485779 Review URL: https://codereview.chromium.org/1140403002 Cr-Commit-Position: refs/heads/master@{#330559}
-
grt authored
This makes the build/test cycle easier for Release builds. BUG=none R=brucedawson@chromium.org Review URL: https://codereview.chromium.org/1144543008 Cr-Commit-Position: refs/heads/master@{#330558}
-
wzhong authored
By default, OnSSLCertificateError() just cancels current request. For connectivity_checker, it needs to cancel the current request and starts next check. In particular, this handles the case that SSL cert fails when device system time is changing (syncing to NTP server). BUG=internal b/20775908 Review URL: https://codereview.chromium.org/1145723004 Cr-Commit-Position: refs/heads/master@{#330557}
-
gunsch authored
R=byungchul@chromium.org,lcwu@chromium.org BUG=internal b/21262248 Review URL: https://codereview.chromium.org/1134183004 Cr-Commit-Position: refs/heads/master@{#330556}
-
reveman authored
4 raster threads improve performance on 8 core machines. 8 core machines might not be a priority but it seems like an unnecessary limitation to have. BUG= Review URL: https://codereview.chromium.org/1143473002 Cr-Commit-Position: refs/heads/master@{#330555}
-
primiano authored
The test is failing due to the lack of WebGL support. See crbug.com/488059#c24 Link to failing step: https://build.chromium.org/p/chromium.perf/builders/Win%20XP%20Perf%20%284%29/builds/3243/steps/blink_perf.canvas/logs/stdio BUG=488059 TBR=skyostil@chromium.org NOTRY=true CQ_EXTRA_TRYBOTS=tryserver.chromium.perf:linux_perf_bisect;tryserver.chromium.perf:mac_perf_bisect;tryserver.chromium.perf:win_perf_bisect;tryserver.chromium.perf:android_nexus5_perf_bisect Review URL: https://codereview.chromium.org/1123153004 Cr-Commit-Position: refs/heads/master@{#330554}
-
jeremyim authored
BUG=467734 Review URL: https://codereview.chromium.org/1147743002 Cr-Commit-Position: refs/heads/master@{#330553}
-
vabr authored
The tools/git/move_source_file.py tool relies on the alphabetic ordering, and will mess up changes if the gypi files are not initially sorted. BUG=486739 Review URL: https://codereview.chromium.org/1139603006 Cr-Commit-Position: refs/heads/master@{#330552}
-
bcwhite authored
BUG=484139 Review URL: https://codereview.chromium.org/1138103003 Cr-Commit-Position: refs/heads/master@{#330551}
-