- 04 Aug, 2014 40 commits
-
-
machenbach@chromium.org authored
TBR=hpayer@chromium.org Review URL: https://codereview.chromium.org/437983002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287326 0039d316-1c4b-4281-b951-d872f2087c98
-
skyostil@chromium.org authored
Since scroll handlers do not block composited scrolling, the existing input latency metric will only report the response time for the compositor when scrolling a page with a handler. This is not accurate for pages that implement scroll-synchronized effects, because the scroll handler needs to be invoked so that the page contents are updated with the new scroll offset. This patch fixes the problem by forwarding latency information from the impl to the main thread when we are scrolling a layer that has an active scroll event handler. In the case the scroll handler is no-op, the latency information will be terminated as a failed commit. Sample trace: https://drive.google.com/file/d/0ByyxMXB38gLDRE40bkU5TVd0U00/edit?usp=sharing BUG=347366 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=282117 Review URL: https://codereview.chromium.org/365463003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287325 0039d316-1c4b-4281-b951-d872f2087c98
-
torne@chromium.org authored
As we still don't have the infrastructure work to reuse the chrome version number in place, bump the fake version number to 38.0.0.0 to reflect that trunk is based on Chromium 38. BUG=297522 NOTRY=true Review URL: https://codereview.chromium.org/439263003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287324 0039d316-1c4b-4281-b951-d872f2087c98
-
hashimoto@chromium.org authored
These prefixes were only available in IDs aquired with the old API. BUG=None TEST=git cl try Review URL: https://codereview.chromium.org/439713003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287322 0039d316-1c4b-4281-b951-d872f2087c98
-
sdefresne@chromium.org authored
The recommended C++ library on iOS is libc++ but the compiler still default to libstdc++ so add a new gyp variable "use_system_libcxx" to choose which C++ library to use. When building Chrome for iOS, so tool are still build on the host which targets Mac OS X SDK 10.6 which does not supports libc++ so only enabled the usage of libc++ when not building for the host. The version of clang shipped on Google storage does not supports using the system libc++ so instead use the version of clang shipped with Xcode when using libc++. BUG=366744 Review URL: https://codereview.chromium.org/425313002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287321 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287320 0039d316-1c4b-4281-b951-d872f2087c98
-
blink-deps-roller@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=179460:179462&mode=html TBR=pdr@chromium.org,enne@chromium.org,rjwright@chromium.org BUG= Review URL: https://codereview.chromium.org/436233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287319 0039d316-1c4b-4281-b951-d872f2087c98
-
mlamouri@chromium.org authored
MacOS is still broken. Chrome OS got fixed by the previous fix. Android was broken by a not required NOTREACHED(). BUG=None Review URL: https://codereview.chromium.org/436603002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287318 0039d316-1c4b-4281-b951-d872f2087c98
-
treib@chromium.org authored
BUG=395105,399587 Review URL: https://codereview.chromium.org/440653002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287317 0039d316-1c4b-4281-b951-d872f2087c98
-
hashimoto@chromium.org authored
BUG=None Review URL: https://codereview.chromium.org/437163002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287316 0039d316-1c4b-4281-b951-d872f2087c98
-
igsolla@chromium.org authored
This change registers an AwMediaUrlInterceptor to enable apps to play media assets. This is a follow-up change to: https://codereview.chromium.org/411353002/ BUG=387898 Review URL: https://codereview.chromium.org/415043006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287315 0039d316-1c4b-4281-b951-d872f2087c98
-
tzik@chromium.org authored
BUG=344769 TEST=unit_tests --gtest_filter='LocalToRemoteSyncerTest.*' Review URL: https://codereview.chromium.org/441633002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287314 0039d316-1c4b-4281-b951-d872f2087c98
-
tnagel@chromium.org authored
Previously, when user_id_hash was empty, the wallpaper was stored with the wrong filename and thus couldn't be retrieved later on. Also fixes the problem that setting a wallpaper with small dimensions after a wallpaper with large dimensions didn't clear all scaled copies of the previous wallpaper. BUG=388819 Review URL: https://codereview.chromium.org/422243002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287313 0039d316-1c4b-4281-b951-d872f2087c98
-
tzik@chromium.org authored
This prevents a task to pick a file to sync while another task is syncing it. BUG=344769 TEST=unit_tests --gtest_filter='LocalFileSyncContextTest.*' Review URL: https://codereview.chromium.org/390283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287312 0039d316-1c4b-4281-b951-d872f2087c98
-
mkwst@chromium.org authored
BUG=390497 Review URL: https://codereview.chromium.org/430783005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287311 0039d316-1c4b-4281-b951-d872f2087c98
-
zerny@chromium.org authored
Blink GC plugin: Require that fields are actually traced by the visitor and identify tracing of dependently-templated base classes. Prior to this we only required that fields occurred within the trace method. Thus we would accept seemingly correct code such as: m_foo->trace(visitor) which can result in a dangling pointer. BUG=395036,334149 R=haraken@chromium.org Review URL: https://codereview.chromium.org/430213003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287310 0039d316-1c4b-4281-b951-d872f2087c98
-
akuegel@chromium.org authored
Add a method to determine the name of a supervised user. So far, we used the profile name, but this doesn't work on ChromeOS. BUG=399320 Review URL: https://codereview.chromium.org/431893004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287309 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287308 0039d316-1c4b-4281-b951-d872f2087c98
-
skia-deps-roller@chromium.org authored
https://skia.googlesource.com/skia/+log/7883132a4e93c8b5e897e271603d3b7122655a51..dddc18a6bba67ad43a65f4c244b95f76cefef617 CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:linux_layout_rel TBR=bungeman@google.com BUG= Review URL: https://codereview.chromium.org/434383002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287307 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287306 0039d316-1c4b-4281-b951-d872f2087c98
-
blink-deps-roller@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=179457:179459&mode=html TBR= BUG= Review URL: https://codereview.chromium.org/433383003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287305 0039d316-1c4b-4281-b951-d872f2087c98
-
sohan.jyoti@samsung.com authored
During cleanup, this keeps the tiles around until the associated raster tasks completes running on the worker thread. We reset the priority of the tile on the tree it lies before dropping it. BUG=386039 Review URL: https://codereview.chromium.org/366113002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287304 0039d316-1c4b-4281-b951-d872f2087c98
-
peria@chromium.org authored
BUG=347425 TEST=./unit_tests --gtest_filter="RemoteTo*:LocalTo*:Metadata*:DriveBackend*:ListChange*:Register" Review URL: https://codereview.chromium.org/437943002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287303 0039d316-1c4b-4281-b951-d872f2087c98
-
mgiuca@chromium.org authored
Created a new class AppWebContentsHelper and moved the implementation of several WebContentsDelegate methods (those which are not specific to app windows) from AppWindow to there. AppWindow just calls those methods. This will enable custom launcher pages to implement WebContentsDelegate without duplicating a lot of code from AppWindow. BUG=399116 Review URL: https://codereview.chromium.org/423453002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287302 0039d316-1c4b-4281-b951-d872f2087c98
-
eroman@chromium.org authored
Now that all of the tests run on both BoringSSL and NSS, there is no need for the MAYBE() macro. Review URL: https://codereview.chromium.org/430733002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287301 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
This is pretty straightforward, just moving the remaining mac tests from ui_unittests.gyp to gfx_tests.gyp. gfx_unittests now has a TestSuite that setups everything we need to run it. BUG=331829 TEST=ui_unittests, gfx_unittests TBR=ben@chromium.org,danakj@chromium.org Review URL: https://codereview.chromium.org/435163002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287300 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
BUG=396344 TBR=calamity@chromium.org Review URL: https://codereview.chromium.org/439203002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287299 0039d316-1c4b-4281-b951-d872f2087c98
-
chromeos-lkgm@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287298 0039d316-1c4b-4281-b951-d872f2087c98
-
stanisc@chromium.org authored
This change introduces implementations of UIDataTypeController and SyncableService for DEVICE_INFO type and corresponding unit tests. This types are not hooked to Profile Sync Service yet. The next change (part 3) will move all DeviceInfo related classes to sync_driver component and the final change (part 4) will hook everything up and remove the legacy SyncedDeviceTracker. BUG=395349 Review URL: https://codereview.chromium.org/430583003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287297 0039d316-1c4b-4281-b951-d872f2087c98
-
peria@chromium.org authored
BUG=None TEST=Build successfully Review URL: https://codereview.chromium.org/436193003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287296 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287295 0039d316-1c4b-4281-b951-d872f2087c98
-
blink-deps-roller@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=179456:179456&mode=html TBR= BUG= Review URL: https://codereview.chromium.org/441613002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287294 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
Review URL: https://codereview.chromium.org/426923004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287293 0039d316-1c4b-4281-b951-d872f2087c98
-
thestig@chromium.org authored
Also do not bother building PPAPI test support code when plugins are disabled. Review URL: https://codereview.chromium.org/435603006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287292 0039d316-1c4b-4281-b951-d872f2087c98
-
tapted@chromium.org authored
It needs a better compositor setup for the tests to actually pass, but it compiles now. Changes were to fix the concept of "parent", which is a container aura::Window in Ash, and NULL on other platforms. However, the parent type for Widgets is a NativeView, not a NativeWindow. Gyp changes are required to resolve undefined symbols "ui::{Terminate,Initialize}ContextFactoryForTests()". This is called from ViewsTestBase in views_test_support, but views_test_support is missing the dependency on compositor_test_support where these are defined. On other platforms, this leaks in via aura stuff. BUG=365977, 399191 TBR=sky@chromium.org Review URL: https://codereview.chromium.org/438533002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287291 0039d316-1c4b-4281-b951-d872f2087c98
-
tapted@chromium.org authored
"context" changed from a NativeView to a NativeWindow in r283126. This gets app_list_demo up to speed. BUG=365977, 399191 Review URL: https://codereview.chromium.org/436513002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287290 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287284 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287283 0039d316-1c4b-4281-b951-d872f2087c98
-
blink-deps-roller@chromium.org authored
http://build.chromium.org/f/chromium/perf/dashboard/ui/changelog_blink.html?url=/trunk&range=179455:179455&mode=html TBR= BUG= Review URL: https://codereview.chromium.org/437123002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287282 0039d316-1c4b-4281-b951-d872f2087c98
-
yoshiki@chromium.org authored
Previously, Video Player tried loading even if it's not installed. This patch checks the status of load and if the load is failed, installs the extension in background and tries loading again. BUG=399557 TEST=manually tested R=hirono@chromium.org, kinaba@chromium.org TBR=mkearney@chromium.org # TBRing for adding argument to private API in the idl file. Review URL: https://codereview.chromium.org/437593006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287280 0039d316-1c4b-4281-b951-d872f2087c98
-