- 17 Mar, 2015 40 commits
-
-
kundaji authored
Add a "clear-data-reduction-proxy-data-savings" flag, which when enabled will clear out data savings statistics on startup. BUG=461022 Review URL: https://codereview.chromium.org/1010083002 Cr-Commit-Position: refs/heads/master@{#320936}
-
pneubeck authored
Also - makes the callback to finishAuthentication optional - adds the "Important: This API works only on Chrome OS." banner to the documentation page. BUG=432280 Review URL: https://codereview.chromium.org/1002243002 Cr-Commit-Position: refs/heads/master@{#320935}
-
smckay authored
Refactor history loading, eliminating the obsolete (and even obstructionist) ChromeSyncFileEntryProvider. This CL updates the entire stack with support for multiple history files, but doesn't yet load all history files. That support will come in a subsequent change. Remove extra "." qualifier in most instance of "Promise.<" and "Array.<" in affected files only. TEST=*ImportHistory* Review URL: https://codereview.chromium.org/1013893002 Cr-Commit-Position: refs/heads/master@{#320934}
-
mcasas authored
1. VideoCaptureControllerID is a struct inside VCCEventHandler, just to wrap an int. It also defines operator< and operator== to enable using it in std::map. This is not needed, so I replaced it with a typedef int VideoCaptureControllerID; And s/const VideoCaptureControllerID&/VideoCaptureControllerID/ This enabled VideoCaptureControllerEventHandler to become a pure interface. Removed video_capture_controller_event_handler.cc. 2. VideoCaptureHost lives 100% in IO Thread, except ctor in UI thread. There's this idiom on IPC message sending where there's two methods OnBla() -> PostTask to DoBla() on IO -> Send msg. But all methods are living on IO and Send is asynchronous anyway, so those DoBla() dealing with Send() are folded into OnBla() methods -- trhose remain they mean basically a sophisticated DeleteLater(). 3. A few methods use base::TimeTicks as param, when they can use const base::TimeTicks&, replaced them (one less copy in the critical capture path). BUG=440843 Review URL: https://codereview.chromium.org/1017503002 Cr-Commit-Position: refs/heads/master@{#320933}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/a537ab2..2f002c7 TBR=rtoy@chromium.org,pfeldman@chromium.org Review URL: https://codereview.chromium.org/1008343005 Cr-Commit-Position: refs/heads/master@{#320932}
-
Michael Achenbach authored
Cr-Commit-Position: refs/heads/master@{#320931}
-
earthdok authored
Should fix the "D-Bus library appears to be incorrectly set up; failed to read machine uuid" messages. BUG=467901 TBR=glider@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1008873004 Cr-Commit-Position: refs/heads/master@{#320930}
-
avi authored
BUG=369661 TEST=none Review URL: https://codereview.chromium.org/1013203002 Cr-Commit-Position: refs/heads/master@{#320929}
-
peter authored
The origin now is included, and Blink has been updated to pass it in. This is part of a three-sided patch: [1] https://codereview.chromium.org/982313002/ [2] https://codereview.chromium.org/985063002/ [3] This patch. BUG=447628 Review URL: https://codereview.chromium.org/985693004 Cr-Commit-Position: refs/heads/master@{#320928}
-
mlamouri authored
It does enable Permissions.query() in Document and Worker context. It is using the mojo pipe associated to the RenderFrameImpl or BlinkPlatformImpl so the PermissionManager doesn't need to know in which context it lives. However, it needs to do some thread jumping to be back in the main thread. This is based on top of https://codereview.chromium.org/804553003 BUG=437770 Review URL: https://codereview.chromium.org/801613004 Cr-Commit-Position: refs/heads/master@{#320927}
-
vkuzkokov authored
BUG= Review URL: https://codereview.chromium.org/912863002 Cr-Commit-Position: refs/heads/master@{#320926}
-
bnc authored
Make HttpStreamFactoryImpl::GetAlternateProtocolRequestFor() return AlternativeService instead of AlternateProtocolInfo, and rename it to GetAlternativeServiceRequestFor. Also change the type and name of HttpStreamFactoryImplJob.{,other_job_}alternate_protocol_. BUG=392576 Review URL: https://codereview.chromium.org/1011013002 Cr-Commit-Position: refs/heads/master@{#320925}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/493c1ce..cdeca44 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=egdaniel@google.com Review URL: https://codereview.chromium.org/1012043003 Cr-Commit-Position: refs/heads/master@{#320924}
-
mnaganov authored
The new callback (aptly named OnReceivedError2) is also called for subresource load failures and provides more information about the failed request. Note that calling OnReceivedError2 is not yet implemented for requests blocked due to security considerations by Blink. This will be implemented separately. BUG=456782 Review URL: https://codereview.chromium.org/1001003004 Cr-Commit-Position: refs/heads/master@{#320923}
-
stanisc authored
GetSuccessorId and GetPredecessorId access all children of the current node's parent in order to get to the next/previous node. With implicit parent ID these functions can't get to the parent. The reasons we didn't run into this problem before are a) The server feature that will stop setting parent ID isn't enabled yet so there wasn't a chance to expose this yet. b) There wasn't enough test coverage. The fix is to use the ParentChildIndex to resolve the implicit (unset) parent ID. Added a new method called GetSiblings at the Directory level that does just that. Also added some unit test coverage. BUG=438313 Review URL: https://codereview.chromium.org/1008993004 Cr-Commit-Position: refs/heads/master@{#320922}
-
henrika authored
Fixes audio issue on Mac for USB headsets where kAudioUnitErr_TooManyFramesToProcess can be returned for a few frames at startup. BUG=466954 TEST=Manual tests of WebRTC clients and different USB headsets. Review URL: https://codereview.chromium.org/1017683002 Cr-Commit-Position: refs/heads/master@{#320921}
-
dgozman authored
BUG=467059 Review URL: https://codereview.chromium.org/1013173002 Cr-Commit-Position: refs/heads/master@{#320920}
-
csharp authored
TBR=aboxhall@chromium.org BUG=467921 Review URL: https://codereview.chromium.org/1014543006 Cr-Commit-Position: refs/heads/master@{#320919}
-
sdefresne authored
ScoredHistoryMatch::Builder was introduced to allow keeping ScoredHistoryMatch in the history component without having a dependency on autocomplete code. As ScoredHistoryMatch has been moved to chrome/browser/autocomplete this makes the code more complex than necessary, so remove it. BUG=462645 Review URL: https://codereview.chromium.org/976423002 Cr-Commit-Position: refs/heads/master@{#320918}
-
csharp authored
TBR=dbeam@chromium.org BUG=467916 Review URL: https://codereview.chromium.org/1012073002 Cr-Commit-Position: refs/heads/master@{#320917}
-
awoloszyn authored
BUG=467673 Review URL: https://codereview.chromium.org/1007383004 Cr-Commit-Position: refs/heads/master@{#320916}
-
droger authored
The copy constructor was changed (in CL https://codereview.chromium.org/853503002/) to allow a WeakNSObject to be copied on a different thread. This CL is making the assignment operator behave consistently with the copy constructor: it is now allowed to assign a WeakNSObject on a different thread. In any case, dereferencing the WeakNSObject on another thread remains disallowed. BUG=394008 Review URL: https://codereview.chromium.org/1014813002 Cr-Commit-Position: refs/heads/master@{#320915}
-
peter authored
This follows the very same pattern as the read and write methods, but does so for deleting notifications instead. Note that the notification database still isn't hooked up to production code, but is covered by a broad series of unit tests. Design document: http://goo.gl/TciXVp BUG=447628 Review URL: https://codereview.chromium.org/1008003003 Cr-Commit-Position: refs/heads/master@{#320914}
-
mcasas authored
BUG=440843 Review URL: https://codereview.chromium.org/1015473003 Cr-Commit-Position: refs/heads/master@{#320913}
-
v8-autoroll authored
Summary of changes available at: https://chromium.googlesource.com/v8/v8/+log/c31ed491..2a8ff45e Please follow these instructions for assigning/CC'ing issues: https://code.google.com/p/v8-wiki/wiki/TriagingIssues TBR=hablich@chromium.org,machenbach@chromium.org,yangguo@chromium.org,vogelheim@chromium.org Review URL: https://codereview.chromium.org/1014543005 Cr-Commit-Position: refs/heads/master@{#320912}
-
skia-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/skia/+log/d0a840d..493c1ce CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel TBR=egdaniel@google.com Review URL: https://codereview.chromium.org/1012043002 Cr-Commit-Position: refs/heads/master@{#320911}
-
vkuzkokov authored
Extracted part 3 of https://codereview.chromium.org/190693002/ BUG=242405 Review URL: https://codereview.chromium.org/914183002 Cr-Commit-Position: refs/heads/master@{#320910}
-
reed authored
needs https://codereview.chromium.org/1013803002/ to land and roll into chrome. BUG= Review URL: https://codereview.chromium.org/1011683006 Cr-Commit-Position: refs/heads/master@{#320909}
-
rmcilroy authored
The RendererScheduler needs to be shutdown before the MessageLoop. Previously this was the case as blink was shutdown before the message loop, however now the message loop is shutdown first. This CL ensures that the renderer scheduler is shutdown just before the message loop. BUG=467369 Review URL: https://codereview.chromium.org/1014643002 Cr-Commit-Position: refs/heads/master@{#320908}
-
rogerta authored
BUG=405038 Review URL: https://codereview.chromium.org/956363002 Cr-Commit-Position: refs/heads/master@{#320907}
-
vasilii authored
BUG=461801 Review URL: https://codereview.chromium.org/1009953002 Cr-Commit-Position: refs/heads/master@{#320906}
-
blink-deps-roller authored
Summary of changes available at: https://chromium.googlesource.com/chromium/blink/+log/68ecb73..a537ab2 TBR=rtoy@chromium.org Review URL: https://codereview.chromium.org/1013153002 Cr-Commit-Position: refs/heads/master@{#320905}
-
chrome-tpm authored
Cr-Commit-Position: refs/heads/master@{#320904}
-
knn authored
BUG=466315 Review URL: https://codereview.chromium.org/1005763003 Cr-Commit-Position: refs/heads/master@{#320903}
-
nhiroki authored
BUG=452403 TEST=content_unittests --gtest_filter=ServiceWorkerDispatcherTest.* Review URL: https://codereview.chromium.org/1017453006 Cr-Commit-Position: refs/heads/master@{#320902}
-
timurrrr authored
BUG=467004 TBR=jonross@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/1014573004 Cr-Commit-Position: refs/heads/master@{#320901}
-
samuong authored
The previous one wasn't available for Win32 builds. BUG= TBR=stgao@chromium.org Review URL: https://codereview.chromium.org/1015663002 Cr-Commit-Position: refs/heads/master@{#320900}
-
noyau authored
BUG=None Review URL: https://codereview.chromium.org/1004223002 Cr-Commit-Position: refs/heads/master@{#320899}
-
yoshiki authored
BUG=448263 TEST=none Review URL: https://codereview.chromium.org/1008003005 Cr-Commit-Position: refs/heads/master@{#320898}
-
bnc authored
Do not re-add alternate protocol from canonical host to origin in HttpServerPropertiesImpl::SetBrokenAlternateProtocol(), because brokenness is recorded independently of the alternate protocol mapping. I have overlooked this detail in https://crrev.com/997953003/diff/80001/net/http/http_server_properties_impl.cc. BUG=392576 Review URL: https://codereview.chromium.org/1011873002 Cr-Commit-Position: refs/heads/master@{#320897}
-