- 10 Jan, 2014 40 commits
-
-
vitalybuka@chromium.org authored
BUG=332183 Review URL: https://codereview.chromium.org/131013005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244086 0039d316-1c4b-4281-b951-d872f2087c98
-
jianli@chromium.org authored
BUG=284553 TEST=new tests added Review URL: https://codereview.chromium.org/130473002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244085 0039d316-1c4b-4281-b951-d872f2087c98
-
dcheng@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=164686:164830&mode=html TBR=fsamuel@chromium.org Review URL: https://codereview.chromium.org/133163002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244084 0039d316-1c4b-4281-b951-d872f2087c98
-
scr@chromium.org authored
Also adjust the background so that darker colors are lighter and by a larger amount if really dark. BUG=320899 Review URL: https://codereview.chromium.org/107623002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244083 0039d316-1c4b-4281-b951-d872f2087c98
-
yoshiki@chromium.org authored
> [Files.app] Change sort timing during metadata fetch > > 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/113293007 TBR=yoshiki@chromium.org Review URL: https://codereview.chromium.org/133223002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244082 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244081 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/125593004/raymes@google.com authored
Reason for revert: The binaries haven't been verified. TBR=hinoka@chromium.org,szager@chromium.org,cmp@chromium.org,hinoka@google.com,jamesr@chromium.org,jamesr@google.com NOTREECHECKS=true NOTRY=true BUG= Review URL: https://codereview.chromium.org/133033003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244080 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244079 0039d316-1c4b-4281-b951-d872f2087c98
-
frankf@chromium.org authored
- Treat lint issues as warnings not errors - Also, disable Recycle rule BUG=None NOTRY=True Review URL: https://codereview.chromium.org/132473003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244078 0039d316-1c4b-4281-b951-d872f2087c98
-
ccameron@chromium.org authored
BUG=327430 Review URL: https://codereview.chromium.org/132403003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244077 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
This roll contains renamed NaCl targets. Review URL: https://codereview.chromium.org/132243003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244076 0039d316-1c4b-4281-b951-d872f2087c98
-
imcheng@chromium.org authored
Attempt to fix issue 332427 by deleting LoggingImpl in CastEnvironment on the main thread instead of the last thread holding on reference to it by doing PostTask with the main thread task runner. Also re-enable CastStreamingApiTest.Basics as this patch should fix the problem. BUG=332427 Review URL: https://codereview.chromium.org/130573002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244075 0039d316-1c4b-4281-b951-d872f2087c98
-
hclam@chromium.org authored
The main motivation of this change is to remove the video capture thread in the renderer. All users of a video capture device already handles the video frame on their thread. There is no need to call the clients with an additional thread. Summary of this change: * Video capture thread eliminated VideoCaptureImpl now runs on the IO thread. Clients are called on the IO thread. * Simplified VideoCaptureImplManager We still need to keep this object for the purpose of sharing a VideoCaptureImpl object with multiple clients. It should own these objects and maintain the usage count. A couple clean up items are done on this class: * It doesn't own the video capture thread now. * It is now a render thread only object. * It maintains refcount of a VideoCaptureImpl explicitly. * It is no longer refcounted. * Clients access it through RenderThreadImpl. Which ensures usage is on the render thread. * New VideoCaptureHandle class Object of this class is returned by VideoCaptureImplManager to give access to a media::VideoCapture object. It is purely a wrapper and helps to do refcounting on the render thread. Testing: Added unit tests for VideoCaptureImplManager to test refcounting. Also updated unit test for VideoCaptureImpl due to the threading changes. Review URL: https://codereview.chromium.org/120893002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244074 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
AddEventHandlersToLinkElement was misspelled, so it wasn't actually counting prerender events. BUG=none TEST=PrerenderBrowserTest.PrerenderPageRemovesPending Review URL: https://codereview.chromium.org/132203008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244073 0039d316-1c4b-4281-b951-d872f2087c98
-
jdduke@chromium.org authored
Teach the TouchEventQueue about touch handler registration, allowing it to make more informed touch forwarding decisions. This also prevents corner cases where a partial touch sequence would be improperly forwarded to the renderer after a touch handler is registered. BUG=332418 Review URL: https://codereview.chromium.org/132083006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244072 0039d316-1c4b-4281-b951-d872f2087c98
-
darin@chromium.org authored
Eliminate ObjectTraits<T> classes in favor of putting these methods directly on the generated *_Data classes. ObjectTraits<T> was added to hide these methods from public classes, but now that *_Data classes are internal, there is no longer any need for ObjectTraits<T>. Review URL: https://codereview.chromium.org/131033002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244071 0039d316-1c4b-4281-b951-d872f2087c98
-
bulach@chromium.org authored
BUG=317523 Review URL: https://codereview.chromium.org/130963003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244070 0039d316-1c4b-4281-b951-d872f2087c98
-
jln@chromium.org authored
While a process is being destroyed by the kernel, it will loose its IPC file descriptors which signals to the browser that the process is dead. In that timeframe, doing a non blocking waitpid() is racy and can indicate the process as still being running while the kernel is still destroying it. We unify Linux with OS X and use known_dead even in the non Zygote case. BUG=332635 NOTRY=true Review URL: https://codereview.chromium.org/130633002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244069 0039d316-1c4b-4281-b951-d872f2087c98
-
vmiura@chromium.org authored
The gpu_tracer reads back GL timer queries as a delayed task. During processing the associated GL context wasn't made current, so it was possible to query the wrong context, get incorrect timestamps, or cause GL errors. BUG=331161 Review URL: https://codereview.chromium.org/130313002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244068 0039d316-1c4b-4281-b951-d872f2087c98
-
szym@chromium.org authored
The extension provides fast bitmap operations with no external dependencies. However, it is not available on all platforms. BUG=323813 TEST=telemetry bitmap_unittest TBR=bulach@chromium.org, tonyg@chromium.org, maruel@chromium.org NOTRY=true This is a third attempt. See bug for previous reviews of this CL. Review URL: https://codereview.chromium.org/130153003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244067 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
Actually test that the sessionStorage behaved correctly. Also, add a test for a conflict case. Ensure the page still loads. BUG=none TEST=PrerenderBrowserTest.PrerenderPageNewTab, PrerenderBrowserTest.PrerenderSessionStorageConflict Review URL: https://codereview.chromium.org/129383002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244066 0039d316-1c4b-4281-b951-d872f2087c98
-
penghuang@chromium.org authored
BUG=330851 Review URL: https://codereview.chromium.org/126823007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244065 0039d316-1c4b-4281-b951-d872f2087c98
-
mtomasz@chromium.org authored
This reverts the webui change from the commit 9cc0da7d (https://codereview.chromium.org/61523002/). The reverted webui change breaks alert dialogs in the Files app by making them not closable by pressing the Escape key. TEST=Tested manually in Files app. BUG=330835, 331739 Review URL: https://codereview.chromium.org/129973002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244064 0039d316-1c4b-4281-b951-d872f2087c98
-
jdduke@chromium.org authored
Previously, touchmove's would be suppressed for non prevent-default'ed touch sequences until the touchmove exceeded the slop threshold. This led to issues where touchmove's for a secondary pointer would never be forwarded while the primary pointer was stationary. As slop event suppression is really an optimization of scrolling with a single pointer, simply enable forwarding of touchmove's if there are multiple pointers present in the MotionEvent. BUG=135102 Review URL: https://codereview.chromium.org/129783004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244063 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
Am having trouble coming up with a satisfactory way to test. BUG= Review URL: https://codereview.chromium.org/129633005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244062 0039d316-1c4b-4281-b951-d872f2087c98
-
jaredshumway94@gmail.com authored
https://code.google.com/p/chromium/issues/detail?id=84556#c32 Review URL: https://codereview.chromium.org/126163003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244061 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=333125 Review URL: https://codereview.chromium.org/132023007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244060 0039d316-1c4b-4281-b951-d872f2087c98
-
piman@chromium.org authored
BUG=314909 Review URL: https://codereview.chromium.org/129633002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244059 0039d316-1c4b-4281-b951-d872f2087c98
-
mukai@chromium.org authored
MultiUserNotificationBlockerChromeOS now supports visiting windows. Due to the dependency from MultiUserWindowManagerChromeOS, it would be beter to be in c/b/ui/ash/multi_user rather than notification. Because now this blocker is turned on only when multi-user feature is enabled, the test for single-user mode has been removed. BUG=321679 R=dewittj@chromium.org, skuhne@chromium.org, sky@chromium.org TBR=bshe@chromium.org TEST=unit_tests / manually Review URL: https://codereview.chromium.org/127423002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244058 0039d316-1c4b-4281-b951-d872f2087c98
-
ernstm@chromium.org authored
The mostly_smooth metric has no unit and therefore shows lower values as an improvement in results.html. Adding 'score' as the unit to fix this. R=fmeawad@chromium.org BUG= Review URL: https://codereview.chromium.org/124103002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244057 0039d316-1c4b-4281-b951-d872f2087c98
-
jrummell@chromium.org authored
Add lock around use of callbacks. BUG=329530 TEST=browser_tests for encrypted media pass TBR=glider Review URL: https://codereview.chromium.org/105933004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244056 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
BUG=333125 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244055 0039d316-1c4b-4281-b951-d872f2087c98
-
cmumford@chromium.org authored
We are trying to deprecate the page_cycler.indexeddb performance test. One of the things done by that test and not indexeddb_perf is the measurement of V8 memory statistics. This change brings V8 stats into indexeddb_perf - but only a subset of the full measurements. Opted for a smaller subset as the full set has too much unrelated stuff, and we really want to catch things like unreleased objects, etc. Review URL: https://codereview.chromium.org/123553003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244054 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
This copies the necessary fonts and add the necessary dependencies to get rid of blink_test_runner.gyp dep. BUG=331303 R=jochen@chromium.org Review URL: https://codereview.chromium.org/120683005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244052 0039d316-1c4b-4281-b951-d872f2087c98
-
tengs@chromium.org authored
Review URL: https://codereview.chromium.org/119963005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244051 0039d316-1c4b-4281-b951-d872f2087c98
-
pkotwicz@chromium.org authored
This is part 1 of implemeting phantom windows for the window controls when using --ash-enable-alternate-caption-button Other notable changes: - Switched to using layer animations instead of gfx::SlideAnimation - Renamed PhantomWindowController::phantom_widget_ and PhantomWindowController::phantom_widget_start_ to PhantomWindowController::phantom_widget_in_target_root_ and PhantomWindowController::phantom_widget_in_start_root_ respectively. - Removed PhantomWindowController::Hide(). Hiding the phantom window can now only be done via destroying the PhantomWindowController BUG=328930 TEST=PhantomWindowControllerTest.* Review URL: https://codereview.chromium.org/101773004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244050 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
Otherwise CQ will complain with: ** Presubmit ERRORS ** Missing LGTM from an OWNER for these files: BUILD.gn R=brettw@chromium.org, darin@chromium.org TBR=darin NOTRY=true Review URL: https://codereview.chromium.org/132893002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244049 0039d316-1c4b-4281-b951-d872f2087c98
-
epenner@chromium.org authored
We can now get the real screen resolution which makes choosing tile size easier. This also uses 384 for FHD resolutions (uses less CPU on GPU/CC threads) and adjusts the tile size some certain screen resolutions just barely straddle an extra tile. BUG=329439 Review URL: https://codereview.chromium.org/119763002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244048 0039d316-1c4b-4281-b951-d872f2087c98
-
raymes@google.com authored
R=sammc@chromium.org Review URL: https://codereview.chromium.org/133083002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244047 0039d316-1c4b-4281-b951-d872f2087c98
-
rouslan@chromium.org authored
BUG=327046 Review URL: https://codereview.chromium.org/116363003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244046 0039d316-1c4b-4281-b951-d872f2087c98
-