- 10 Jan, 2014 40 commits
-
-
mef@chromium.org authored
BUG=313716 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=243957 Review URL: https://codereview.chromium.org/123383002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244217 0039d316-1c4b-4281-b951-d872f2087c98
-
noms@chromium.org authored
BUG=325435 NOTRY=true TEST=none Review URL: https://codereview.chromium.org/134013003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244216 0039d316-1c4b-4281-b951-d872f2087c98
-
reed@google.com authored
BUG= Review URL: https://codereview.chromium.org/133903003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244215 0039d316-1c4b-4281-b951-d872f2087c98
-
fsamuel@chromium.org authored
BUG=330843 Review URL: https://codereview.chromium.org/133013007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244214 0039d316-1c4b-4281-b951-d872f2087c98
-
matthewturk@gmail.com authored
When supplying a zero size to getcwd() typical behavior is to allocate internally and return a pointer. This behavior was already implemented, but disabled by checking if size <= 0 and erroring with EINVAL. As size_t is positive definite, this entire check can be removed. R=noelallen@chromium.org, sbc@chromium.org, binji@chromium.org BUG= Review URL: https://codereview.chromium.org/122943005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244213 0039d316-1c4b-4281-b951-d872f2087c98
-
zmo@chromium.org authored
This is to get us ready to dynamically enable or disable a renderer feature whenever, for example, the gpu is switched in a multiple gpu system. BUG=332188 TEST= R=bbudge@chromium.org, jamesr@chromium.org, joi@chromium.org, kbr@chromium.org Review URL: https://codereview.chromium.org/126993002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244212 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
BUG=None Review URL: https://codereview.chromium.org/132033002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244211 0039d316-1c4b-4281-b951-d872f2087c98
-
tdresser@chromium.org authored
Previously we looked at including the touchscreen name in the UMA hardware profile: https://codereview.chromium.org/23619085/. As that posed a privacy concern, this patch includes the vid/pid instead. BUG=248910 Review URL: https://codereview.chromium.org/103893005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244210 0039d316-1c4b-4281-b951-d872f2087c98
-
blundell@chromium.org authored
This change is a first step toward moving UbertokenFetcher and GoogleAutoLoginHelper into //google_apis. Rather than UbertokenFetcher having a variant of StartFetchingToken() wherein it uses the primary account ID, callers must always supply the account ID. As GoogleAutoLoginHelper should also not know about PO2TS, this CL similarly eliminates GoogleAutoLoginHelper::Login(). BUG=330292 TBR=nyquist,mkwst,courage Review URL: https://codereview.chromium.org/131973004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244208 0039d316-1c4b-4281-b951-d872f2087c98
-
skyostil@chromium.org authored
Make it possible to configure synthetic delays using trace categories. For example, the category filter "DELAY(gpu.SwapBuffers;16)" would make swap buffers take at least 16 ms to complete. BUG=307841 Review URL: https://codereview.chromium.org/98953002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244207 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
We've been happy to prerender https URLs for quite some time now. BUG=none TEST=no behavior change Review URL: https://codereview.chromium.org/133993003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244206 0039d316-1c4b-4281-b951-d872f2087c98
-
yoshiki@chromium.org authored
This patch is a reland of r243816, fixing the tiny typo. Previously, sort was not started until all the metadata is fetched. When fetching took a time, the user saw unsorted list for a while. With this patch, sort is happened just after every updates. User can see sorted list every time. BUG=327479 TEST=manually tested Review URL: https://codereview.chromium.org/132683004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244205 0039d316-1c4b-4281-b951-d872f2087c98
-
rdsmith@chromium.org authored
BUG=None R=mmenke@chromium.org Review URL: https://codereview.chromium.org/132283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244204 0039d316-1c4b-4281-b951-d872f2087c98
-
brettw@chromium.org authored
This resulted in a double -D definition. TBR=scottmg Review URL: https://codereview.chromium.org/132903005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244203 0039d316-1c4b-4281-b951-d872f2087c98
-
phoglund@chromium.org authored
Turns out we accidently removed the DTMF payload type from the SDP. We now preserve it even if we force iSAC. BUG=332016 R=wjia@chromium.org Review URL: https://codereview.chromium.org/133353004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244200 0039d316-1c4b-4281-b951-d872f2087c98
-
droger@chromium.org authored
This CL introduces the TranslateDelegate to inject the required dependencies in the translate component. TranslateDelegate is a singleton for now, but this will need to be revisited once the ownership model of TranslateManager is improved. BUG=331509 Review URL: https://codereview.chromium.org/131463002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244199 0039d316-1c4b-4281-b951-d872f2087c98
-
mkosiba@chromium.org authored
The Android SDK has been updated to 19, make it possible to use new APIs. BUG=None TEST=None, build. NOTRY=true Review URL: https://codereview.chromium.org/130743004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244198 0039d316-1c4b-4281-b951-d872f2087c98
-
grt@chromium.org authored
This was added for the sake of Chrome Frame and is now no longer needed. BUG=316496 R=cpu@chromium.org Review URL: https://codereview.chromium.org/129003003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244197 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Remove PrerenderTracker::TryCancel* methods and associated ones, since destruction of prerender only happens on the UI thread through PrerenderContents now. BUG=304341 R=mmenke@chromium.org, tburkard@chromium.org Review URL: https://codereview.chromium.org/132613002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244196 0039d316-1c4b-4281-b951-d872f2087c98
-
spang@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244195 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
In RawChannelPosix::OnFileCanReadWithoutBlocking()'s call to memmove(), read_buffer_start may point one past the end of the buffer. This isn't a "real" problem, since in that case read_buffer_num_valid_bytes_ will be zero, but it's illegal to subscript a vector with an invalid index and an assertion fails in Debug builds (an alternate fix would be to replace &read_buffer_[read_buffer_start] with &read_buffer_[0] + read_buffer_start). The bug was exhibited by the flakily-failing MultiprocessMessagePipeTest.QueueMessages (in Debug builds), so to test run: out/Debug/mojo_system_unittests \ --gtest_filter=MultiprocessMessagePipeTest.QueueMessages \ --gtest_repeat=-1 --single-process-tests R=darin@chromium.org BUG=329622 Review URL: https://codereview.chromium.org/132173003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244194 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Fix idle handlers not being called. The problem was that RenderThread::AddRoute was assuming that each listener was a RenderWidget. That used to be the case originally, but hasn't been like that for a while (i.e. also see ChromeV8ExtensionHandler and ChromePluginPlaceholder). BUG=333051 R=nasko@chromium.org Review URL: https://codereview.chromium.org/133483002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244193 0039d316-1c4b-4281-b951-d872f2087c98
-
vollick@chromium.org authored
This information is now coming in via the debug info. Lots of stuff may disappear now. BUG=None R=jamesr@chromium.org Review URL: https://codereview.chromium.org/128263006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244190 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/133123004/mek@chromium.org authored
Reason for revert: Broke compilation on a number of bots on the main waterfall TBR=hashimoto@chromium.org,kinaba@chromium.org NOTREECHECKS=true NOTRY=true BUG=324166 Review URL: https://codereview.chromium.org/134213003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244189 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244187 0039d316-1c4b-4281-b951-d872f2087c98
-
machenbach@chromium.org authored
TBR=rossberg@chromium.org Review URL: https://codereview.chromium.org/133123005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244186 0039d316-1c4b-4281-b951-d872f2087c98
-
johnme@chromium.org authored
Review URL: https://codereview.chromium.org/131543004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244185 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244184 0039d316-1c4b-4281-b951-d872f2087c98
-
eseidel@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=164851:164871&mode=html TBR= BUG= Review URL: https://codereview.chromium.org/133833002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244183 0039d316-1c4b-4281-b951-d872f2087c98
-
kinaba@chromium.org authored
BUG=324166 Review URL: https://codereview.chromium.org/133123004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244182 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244180 0039d316-1c4b-4281-b951-d872f2087c98
-
oleg@chromium.org authored
BUG=267514 Review URL: https://codereview.chromium.org/119963004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244178 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
As transient logic has been moved outside of aura it doesn't make sense for these methods to be in WindowObserver anymore. Instead they have been added to TransientWindowManager. BUG=none TEST=none R=ben@chromium.org Review URL: https://codereview.chromium.org/132013004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244176 0039d316-1c4b-4281-b951-d872f2087c98
-
skyostil@chromium.org authored
Add synthetic delay points for simulating long computation in the following parts of the graphics/input pipeline: 1. blink.HandleInputEvent - Expensive JavaScript input event handling. 2. cc.RasterRequiredForActivation - Long running raster tasks. 3. cc.BeginMainFrame - Complex main thread picture recording, layout or rAF. 4. gpu.AsyncTexImage - Slow texture uploads. 5. gpu.SwapBuffers - GPU-bound rendering. BUG=307841 Review URL: https://codereview.chromium.org/83183005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244175 0039d316-1c4b-4281-b951-d872f2087c98
-
jkarlin@chromium.org authored
which caused a crash. The revision associated with the cl: 243568 The cl that caused the issue: cl/122453002 BUG=333132 Review URL: https://codereview.chromium.org/133663003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244174 0039d316-1c4b-4281-b951-d872f2087c98
-
glider@chromium.org authored
BUG=333244 TBR=hclam@chromium.org Review URL: https://codereview.chromium.org/133743003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244173 0039d316-1c4b-4281-b951-d872f2087c98
-
vabr@chromium.org authored
The PSL matching seems to work already on Windows, because it only depends on the platform-independent parts of login_database.cc. After manually verifying that it works (with a Release ToT build), I'd like to enable it on trunk in this CL. I will make sure that this change does not propagate to beta and stable before it passes all the reviews in the launch bug (linked from the BUG below). BUG=324291 Review URL: https://codereview.chromium.org/131683003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244172 0039d316-1c4b-4281-b951-d872f2087c98
-
grt@chromium.org authored
BUG=316496 Review URL: https://codereview.chromium.org/128433006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244171 0039d316-1c4b-4281-b951-d872f2087c98
-
bulach@chromium.org authored
BUG=317523 Review URL: https://codereview.chromium.org/133533002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244170 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/132503002/mek@chromium.org authored
Reason for revert: This seems to cause WebRtcBrowserTest to fail on Win7 debug bots TBR=piman@chromium.org,fischman@chromium.org,danakj@chromium.org NOTREECHECKS=true NOTRY=true BUG=270918 Review URL: https://codereview.chromium.org/134003003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244169 0039d316-1c4b-4281-b951-d872f2087c98
-