- 06 Feb, 2015 40 commits
-
-
Ken Rockot authored
This reverts commit 101f015e. Causing http://crbug.com/456224. While this original CL should be fine, it's not; we need to revert until we understand why. R=marshall@chromium.org BUG=456224 Review URL: https://codereview.chromium.org/892463005 Cr-Commit-Position: refs/heads/master@{#315101}
-
garykac authored
BUG= Review URL: https://codereview.chromium.org/908463003 Cr-Commit-Position: refs/heads/master@{#315100}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/02c8fd0..d042358 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/907483003 Cr-Commit-Position: refs/heads/master@{#315099}
-
ananta authored
Fix a use after free crasher in the ReadAsync task initiated on Windows by the FileStream::Context::Read operation. The crash was reported by the DrMemory bot and based on the stack happens because the OVERLAPPED structure passed into the ReadFile call is invalid. Proposed fix is the following:- 1. Have two flags io_complete_for_read_received_ and async_read_completed_ which track whether the IO completion was received for a Read and whether we received a notification on the calling thread that the ReadFile call returned. We invoke the user callback only when both these flags are true. 2. We have another flag async_read_initiated_ which is set to true if an asynchonous Read was initated. We use this to not set the async_in_progress_ flag to false until both notifications as per 1 above are received. 3. All flags above are reset when we invoke the user callback. That now happens in the InvokeUserCallback function. 4. We need to save the result in a member as the callback is invoked later. 5. Removed the Weak pointer member from the Context class as this is not needed because the Context instance should remain valid until the pending Read operation completes. BUG=455066 Review URL: https://codereview.chromium.org/888143003 Cr-Commit-Position: refs/heads/master@{#315098}
-
mkearney authored
Review URL: https://codereview.chromium.org/903113003 Cr-Commit-Position: refs/heads/master@{#315097}
-
jiayl authored
Revert of Roll WebRTC 8220:8272, Libjingle 8221:8270 (patchset #1 id:1 of https://codereview.chromium.org/902183002/) Reason for revert: Suspected to cause the test failures on Mac: http://build.chromium.org/p/chromium.mac/builders/Mac10.9%20Tests%20%28dbg%29/builds/2725 Original issue's description: > Roll WebRTC 8220:8272, Libjingle 8221:8270 > > WebRTC 8220:8272 > Changes: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git/+log/cfe4b49..0506804 > > Libjingle 8221:8270 > Changes: https://chromium.googlesource.com/external/webrtc/trunk/talk.git/+log/18f533d..184c120 > > TBR=magjed@chromium.org > > Committed: https://crrev.com/53b0c831ff6731665a6881fe380e8097402ccf0b > Cr-Commit-Position: refs/heads/master@{#315066} TBR=magjed@chromium.org,tommi@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/907513002 Cr-Commit-Position: refs/heads/master@{#315096}
-
armansito authored
This CL ports the GATT API bindings from the D-Bus API in our Chrome OS fork to the API definition in doc/gatt-api.txt in BlueZ upstream. TBR=keybuk@chromium.org BUG=440968 Review URL: https://codereview.chromium.org/788193004 Cr-Commit-Position: refs/heads/master@{#315095}
-
smckay authored
1) Add a drop down revealing a popup panel with import details (with is a WIP, but the current state should be sufficient to land). 2) Update scanner to publish updates on all scan activity (so the details reflects valid information while scanning). In doing this I pulled all of the deduping logic up out of ScanResult into MediaScanner...improving separation of concern between the classes. 3) Rework update model to eliminate a flicker resulting from the brief update to show zero results when a file selection is transitioning from n to n+/-1. Sadly, this change results in a net loss of readability, especially WRT having good clear decision points. I've added comments to help out in this respect. FYI, I'm OOO for the rest of the day. I think this CL is good to land, rough though it may be. In a followup CL: 1) I'll make some subsequent improvements to unittests in the wake of removing the "GetCommandUpdate" coverage (removed because GetCommandUpdate exists no more). 2) This change still exhibits one odd behavior, ignoring entirely a selection when it consistes of all deduped files...in that case we *do* want to see zero results. Will address at the time of test improvements. BUG=420680 TEST=browser_test: FileManagerJsTest.* Review URL: https://codereview.chromium.org/899943002 Cr-Commit-Position: refs/heads/master@{#315094}
-
chrome://networkstevenjb authored
This CL: * Enables chrome.networkingPrivate in chrome://network * Replaces networkConfig with direct calls to chrome.networkingPrivate * Moves the getShillProperties implementation (which is not available in networkingPrivate) into the network_ui.js and network_ui.cc files BUG=453895 For webui resources: TBR=xiyuan@chromium.org Review URL: https://codereview.chromium.org/890663003 Cr-Commit-Position: refs/heads/master@{#315093}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/ea6ed3c31..722374e TBR=apavlov@chromium.org,dpranke@chromium.org Review URL: https://codereview.chromium.org/903163002 Cr-Commit-Position: refs/heads/master@{#315092}
-
rtenneti authored
Revert of Landing Recent QUIC Changes. (patchset #1 id:1 of https://codereview.chromium.org/903013002/) Reason for revert: Broke the build Original issue's description: > Landing Recent QUIC Changes. > > Making the (deprecation-in-progress) congestion field write only. > > This is a bit of a hack because technically it's "required" for > QUIC_VERSION_23 but as all the internal servers and all of chrome builds > picking up this change consider the field optional despite the version, > it should just Work (TM). > > I was hoping to stop sending the congestion fields for v24 clients but > that is not safe until the internal server fleet doesn't consider it a > required field for negotiated()=true. Bah. > > No longer reading the (deprecated) congestion fields for QUIC. > > Merge internal change: 85158634 > https://codereview.chromium.org/898233003/ > > Improving junk packet handling for QUIC by ignoring packets with client > port 0. > > Merge internal change: 85067984 > https://codereview.chromium.org/885713009/ > > Removing deprecated flag FLAGS_quic_use_initial_rtt_for_stats. > > Merge internal change: 84999682 > https://codereview.chromium.org/883393008/ > > Adding more error logging for failed QUIC writes. > > Merge internal change: 84989992 > https://codereview.chromium.org/898243002/ > > Further cleanup to QuicAckNotifier and QuicAckNotifierManager. > No functional change. > > Merge internal change: 84784925 > https://codereview.chromium.org/880403006/ > > Remove an unneeded hash_set from QuicAckNotifierManager. > No change in behavior. > > Merge internal change: 84637544 > https://codereview.chromium.org/872403007/ > > Minor cleanup and optimization of QuicConnection::IsConnectionClose. > > Merge internal change: 84624803 > https://codereview.chromium.org/903973002/ > > Rename QuicAckNotifier's AddSequenceNumber to OnSerializedPacket. > No functional change. > > Merge internal change: 84624660 > https://codereview.chromium.org/867293004/ > > R=rch@chromium.org > > Committed: https://crrev.com/ff331b65e0aef293ed6f1d0954b83ae17cc66d28 > Cr-Commit-Position: refs/heads/master@{#315086} TBR=rch@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Review URL: https://codereview.chromium.org/908623002 Cr-Commit-Position: refs/heads/master@{#315091}
-
jamescook authored
It doesn't need to run in Chrome's browser_tests. BUG=388893 TEST=browser_tests and extensions_browsertests for Bluetooth* Review URL: https://codereview.chromium.org/902213002 Cr-Commit-Position: refs/heads/master@{#315090}
-
asvitkine authored
NSWindowFullScreenButton is a 10.7 addition and calling -standardWindowButton: with it on 10.6 results in log spam of the form: "unrecognized button type 7" BUG=none Review URL: https://codereview.chromium.org/905803002 Cr-Commit-Position: refs/heads/master@{#315089}
-
pvalenzuela authored
This is a re-land of https://codereview.chromium.org/862113005/ This CL introduces JNI plumbing for one method of the FakeServer's verification API. One test (testUploadTypedUrl) has been added to use the API; it types a URL on the client and verifies that the URL was sent to the server. BUG=NONE Review URL: https://codereview.chromium.org/884073005 Cr-Commit-Position: refs/heads/master@{#315088}
-
rch authored
The number of times the current received packet had a lower sequence number than the previously received packet sequence number, and the size of the current packet is larger than the size of the previous packet. Review URL: https://codereview.chromium.org/905593002 Cr-Commit-Position: refs/heads/master@{#315087}
-
rtenneti authored
Making the (deprecation-in-progress) congestion field write only. This is a bit of a hack because technically it's "required" for QUIC_VERSION_23 but as all the internal servers and all of chrome builds picking up this change consider the field optional despite the version, it should just Work (TM). I was hoping to stop sending the congestion fields for v24 clients but that is not safe until the internal server fleet doesn't consider it a required field for negotiated()=true. Bah. No longer reading the (deprecated) congestion fields for QUIC. Merge internal change: 85158634 https://codereview.chromium.org/898233003/ Improving junk packet handling for QUIC by ignoring packets with client port 0. Merge internal change: 85067984 https://codereview.chromium.org/885713009/ Removing deprecated flag FLAGS_quic_use_initial_rtt_for_stats. Merge internal change: 84999682 https://codereview.chromium.org/883393008/ Adding more error logging for failed QUIC writes. Merge internal change: 84989992 https://codereview.chromium.org/898243002/ Further cleanup to QuicAckNotifier and QuicAckNotifierManager. No functional change. Merge internal change: 84784925 https://codereview.chromium.org/880403006/ Remove an unneeded hash_set from QuicAckNotifierManager. No change in behavior. Merge internal change: 84637544 https://codereview.chromium.org/872403007/ Minor cleanup and optimization of QuicConnection::IsConnectionClose. Merge internal change: 84624803 https://codereview.chromium.org/903973002/ Rename QuicAckNotifier's AddSequenceNumber to OnSerializedPacket. No functional change. Merge internal change: 84624660 https://codereview.chromium.org/867293004/ R=rch@chromium.org Review URL: https://codereview.chromium.org/903013002 Cr-Commit-Position: refs/heads/master@{#315086}
-
jdduke authored
Switch Chrome on Android to use libc++ instead of stlport. WebView AOSP builds will continue to use stlport for the time being. Note that this change is exploratory, and likely to be reverted before branch point (ensuring WebView and Chrome remain in lockstep with respect to standard library dependencies). BUG=427718 TBR=cpu@chromium.org Review URL: https://codereview.chromium.org/835633003 Cr-Commit-Position: refs/heads/master@{#315085}
-
atwilson authored
CloudPolicyClient previously only allowed a single outstanding request at once, and issuing a new request would cause the previous request to silently fail. This behavior made sense for policy fetches, but not for other types of out-of-band requests (status uploads, certificate uploads, etc). CloudPolicyClient now allows multiple requests at once, and differentiates between policy-fetch/registration related requests and out-of-band requests. BUG=452563 Review URL: https://codereview.chromium.org/885653007 Cr-Commit-Position: refs/heads/master@{#315084}
-
Daniel Cheng authored
BUG=417463 R=thakis@chromium.org Review URL: https://codereview.chromium.org/908613002 Cr-Commit-Position: refs/heads/master@{#315083}
-
stevenjb authored
BUG=none Review URL: https://codereview.chromium.org/888643004 Cr-Commit-Position: refs/heads/master@{#315082}
-
yoz authored
These measure the time taken in response to ExtensionService ready signaling. These are the 2 heaviest observers of ready. BUG=453073 Review URL: https://codereview.chromium.org/874643003 Cr-Commit-Position: refs/heads/master@{#315081}
-
mmeade authored
This cl contains the base code plus a "simple" hello world example test. BUG=453679 Review URL: https://codereview.chromium.org/890773003 Cr-Commit-Position: refs/heads/master@{#315080}
-
Daniel Cheng authored
The Google style guide states that only one of {virtual,override,final} should be used for each declaration, since override implies virtual and final implies both virtual and override. This patch was automatically generated with an OS=android build using a variation of https://codereview.chromium.org/598073004. BUG=417463 R=timvolodine@chromium.org Review URL: https://codereview.chromium.org/902973002 Cr-Commit-Position: refs/heads/master@{#315079}
-
michaelpg authored
The latest <paper-toggle-button> matches the Material Design spec. The MD-Settings page will make use of this button in a follow-up CL. Since paper-toggle-button isn't currently used in Chromium there shouldn't be any side effects for this change. R=rsadam@chromium.org Review URL: https://codereview.chromium.org/899383002 Cr-Commit-Position: refs/heads/master@{#315078}
-
rdevlin.cronin authored
Review URL: https://codereview.chromium.org/884903003 Cr-Commit-Position: refs/heads/master@{#315077}
-
vitalybuka authored
Code is not used after we Chrome stopped generation of EMF inside render. Review URL: https://codereview.chromium.org/900683004 Cr-Commit-Position: refs/heads/master@{#315076}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/7e38934..ea6ed3c31 TBR=apavlov@chromium.org,dpranke@chromium.org Review URL: https://codereview.chromium.org/894373003 Cr-Commit-Position: refs/heads/master@{#315075}
-
tbarzic authored
BUG=455999 TEST=Chrome does not crash when changing selected printer in print preview opened in an incognito window Review URL: https://codereview.chromium.org/903123002 Cr-Commit-Position: refs/heads/master@{#315074}
-
xunjieli authored
BUG=398997 Review URL: https://codereview.chromium.org/885783008 Cr-Commit-Position: refs/heads/master@{#315073}
-
pkotwicz authored
BUG=None TEST=None R=sadrul TBR=oshima Review URL: https://codereview.chromium.org/904733002 Cr-Commit-Position: refs/heads/master@{#315072}
-
mikecase authored
This change will allow Googlers to bisect over Android builds at a finer grain than what is currently possible (currently can only bisect over official builds for Android). BUG= Review URL: https://codereview.chromium.org/851333004 Cr-Commit-Position: refs/heads/master@{#315071}
-
quiche authored
Add tests which exercise wifi_sync's ability to add networks. These tests add a network to the platform wifi config, and then verify that the new network appears in other sync clients. BUG=chromium:431435 TEST=sync_integration_tests --gtest_filter="*Wifi*" Review URL: https://codereview.chromium.org/843483004 Cr-Commit-Position: refs/heads/master@{#315070}
-
sullivan authored
Loosen the parsing of CDB output in windows; it can start with at least 'ChildEBP' or 'Child-SP', and the extra output probably isn't much if those are not found. BUG=433966 Review URL: https://codereview.chromium.org/904063002 Cr-Commit-Position: refs/heads/master@{#315069}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/50785a3..02c8fd0 CQ_EXTRA_TRYBOTS=tryserver.blink:linux_blink_rel,linux_blink_dbg TBR=stephana@google.com Review URL: https://codereview.chromium.org/904913002 Cr-Commit-Position: refs/heads/master@{#315068}
-
jamescook authored
* Fix dependency issues in //extensions * Make protobuf library add the "src" directory to the compiler's include directory list, otherwise it tries to use /usr/include/google/protobuf which has incompatible headers. BUG=455919 TEST=compiles and links in both component and non-component builds Review URL: https://codereview.chromium.org/889253004 Cr-Commit-Position: refs/heads/master@{#315067}
-
tommi authored
WebRTC 8220:8272 Changes: https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git/+log/cfe4b49..0506804 Libjingle 8221:8270 Changes: https://chromium.googlesource.com/external/webrtc/trunk/talk.git/+log/18f533d..184c120 TBR=magjed@chromium.org Review URL: https://codereview.chromium.org/902183002 Cr-Commit-Position: refs/heads/master@{#315066}
-
creis authored
Revert of Disable NavigatorTestWithBrowserSideNavigation.BeginNavigation (patchset #1 id:1 of https://codereview.chromium.org/905463004/) Reason for revert: Test fixed in https://codereview.chromium.org/904673004/, https://crrev.com/315063. Original issue's description: > Disable NavigatorTestWithBrowserSideNavigation.BeginNavigation > > This test fails within the WebContentsObserverSanityChecker, since no IPC > for RenderFrameCreated is sent. Disable while we find a good way to make > the sanity checker play nicely within the unit test framework running in > --site-per-process > > BUG=417518 > > Committed: https://crrev.com/33e0ed259a19bc6c918fa11fcacffdf709440447 > Cr-Commit-Position: refs/heads/master@{#314960} TBR=alexmos@chromium.org,jam@chromium.org,nasko@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=417518 Review URL: https://codereview.chromium.org/870653006 Cr-Commit-Position: refs/heads/master@{#315065}
-
michaelpg authored
Also remove unused and outdated 'domui_options' Review URL: https://codereview.chromium.org/900773005 Cr-Commit-Position: refs/heads/master@{#315064}
-
carlosk authored
Test NavigatorTestWithBrowserSideNavigation.BeginNavigation was broken due to the way the subframe used was added to the tree. By directly calling FrameTree::AddFrame the proper observer notifications were not being executed and triggered a sanity check. It was replaced with the already test-tailored TestRenderFrameHost::AppendChild. BUG=455484 Review URL: https://codereview.chromium.org/904673004 Cr-Commit-Position: refs/heads/master@{#315063}
-
sergiyb authored
Downloaded by: https://code.google.com/p/chromium/codesearch#chromium/src/tools/telemetry/telemetry/util/cloud_storage.py&l=86 BUG=456091 R=sullivan@chromium.org Review URL: https://codereview.chromium.org/888883004 Cr-Commit-Position: refs/heads/master@{#315062}
-