- 13 Feb, 2014 40 commits
-
-
jinho.bang@samsung.com authored
A UserStyleLevel parameter is no longer used in insertUserStyleSheet() and insertUserStyleSheet() calls just insertStyleSheet() again. blink side: https://codereview.chromium.org/143203006 Review URL: https://codereview.chromium.org/154113008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250982 0039d316-1c4b-4281-b951-d872f2087c98
-
apatole@nvidia.com authored
Like linux, on android we can get the thread names to show up in the debugger by setting the process name for the LWP. This change sets the name of the calling thread using prctl. BUG=332881 R=jam@chromium.org R=torne@chromium.org Review URL: https://codereview.chromium.org/144943004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250981 0039d316-1c4b-4281-b951-d872f2087c98
-
antrim@chromium.org authored
BUG=332032 R=nkostylev@chromium.org Review URL: https://codereview.chromium.org/132803012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250980 0039d316-1c4b-4281-b951-d872f2087c98
-
torne@chromium.org authored
Update deps whitelist to match current downstream merge list. BUG= NOTRY=true Review URL: https://codereview.chromium.org/163323002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250979 0039d316-1c4b-4281-b951-d872f2087c98
-
tommi@chromium.org authored
> suppress data race on media::CoreAudioUtil > BUG=314654 > TBR=ygorshenin@chromium.org > TEST=waterfall > > Review URL: https://codereview.chromium.org/57643003 TBR=zhaoqin@google.com BUG=314654 Review URL: https://codereview.chromium.org/163253003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250977 0039d316-1c4b-4281-b951-d872f2087c98
-
tim@chromium.org authored
Revert of [sync]: add ManagedUserSigninManagerWrapper and pass to ProfileSyncService (https://codereview.chromium.org/137753012/) Reason for revert: Possible build bustage on Win64. Original issue's description: > [sync]: add ManagedUserSigninManagerWrapper and pass to ProfileSyncService > > BUG=80194 > > Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=250814 TBR=bauerb@chromium.org,rogerta@chromium.org,pavely@chromium.org NOTREECHECKS=true NOTRY=true BUG=80194 Review URL: https://codereview.chromium.org/162943002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250967 0039d316-1c4b-4281-b951-d872f2087c98
-
hubbe@chromium.org authored
If a channel closes right before a send call, listeners might not be notified of the problem, which can cause hangs. This CL fixes that and adds a test that makes sure that this does not happen in the future. This is cl/30133002 + a memory leak fix. BUG=338709 Review URL: https://codereview.chromium.org/150893002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250964 0039d316-1c4b-4281-b951-d872f2087c98
-
juyik@chromium.org authored
Add GCM check in status code metric collection. We also decided to collect registration success signal now. BUG=284553 Review URL: https://codereview.chromium.org/158023007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250963 0039d316-1c4b-4281-b951-d872f2087c98
-
kochi@google.com authored
We should use LF-only unless it is really necessary (e.g. .BAT files). Probably this was introduced by crrev.com/250068. BUG=none TBR=mnaganov@chromium.org, darin@chromium.org Review URL: https://codereview.chromium.org/162763002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250962 0039d316-1c4b-4281-b951-d872f2087c98
-
huey@chromium.org authored
Move the sources! section out of link_settings, where it was being ignored. BUG=330074 Review URL: https://codereview.chromium.org/150973007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250961 0039d316-1c4b-4281-b951-d872f2087c98
-
jianli@chromium.org authored
When a profile is being signed out, we need to: 1) Close all the requests and connections. 2) Delete the GCM store. 3) Delete the persisted registration info (sender IDs and registration ID) from the app's state store. 4) Delete the persisted data from prefs store To support 3, we need to remember the IDs of all registered apps. As the result, I added the code to write the IDs of all registered apps to the prefs store. Also due to this change, we do not need to listen to NOTIFICATION_EXTENSION_LOADED and load the registration info when the app is loaded because we will restore all the app IDs and then read all the registration info when GCMProfileService starts. This also makes us support other types of apps. BUG=284553 TEST=new tests added Review URL: https://codereview.chromium.org/162233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250958 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
The idea came first while I found this code was using google_breakpad's scoped_ptr version rather than base's version. Then I saw in win8/ that this function could return a scoped_ptr to make it clear the ownership to caller, i.e., this function passes the ownership of ExceptionHandler to the caller, so it should own the pointer to release it when it is done. BUG=None TEST=None R=grt@chromium.org Review URL: https://codereview.chromium.org/160283002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250957 0039d316-1c4b-4281-b951-d872f2087c98
-
cjhopman@chromium.org authored
In some cases we have multiple libraries with the same package name (particularly test+non-test). If one of these depends on the other and refers to package-private stuff in the second, then it should be rebuilt if the signature of package-private stuff is changed. To ensure that happens, the TOC file must include the signatures of package-private members. Review URL: https://codereview.chromium.org/161773002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250956 0039d316-1c4b-4281-b951-d872f2087c98
-
tonyg@chromium.org authored
This is in preparation for moving webpagereplay.py into Telemetry. BUG= Review URL: https://codereview.chromium.org/160443004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250953 0039d316-1c4b-4281-b951-d872f2087c98
-
mikhal@chromium.org authored
main changes: - Updating synthetic video test sequence to be more uniform. - Fixing added delay to render/playout times introduced in the rtp-stats API update. - Sending audio packets to pacer in a timed manner. BUG=329563 Review URL: https://codereview.chromium.org/147993010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250947 0039d316-1c4b-4281-b951-d872f2087c98
-
ddorwin@chromium.org authored
Review URL: https://codereview.chromium.org/161873002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250945 0039d316-1c4b-4281-b951-d872f2087c98
-
vasilii@chromium.org authored
BUG=95758 Review URL: https://codereview.chromium.org/139443004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250944 0039d316-1c4b-4281-b951-d872f2087c98
-
rdevlin.cronin@chromium.org authored
This is in preparation for integrating the error console work with the Apps Developer Tool. On the chrome side, this means: - Adding new DeveloperPrivateAPI functions to open developer tools and read file source. - Making DeveloperPrivateAPI listen for extension errors. - Refactor ExtensionErrorHandler WebUI to allow for shared code with DeveloperPrivateAPI (error_handler_ui_util). - Refactor extension_error[_overlay].js to use either chrome.send or chrome.developerPrivate functions. - Refactor so that all knowledge of whether the overlay can be displayed is in extension_error_overlay.js Images: http://imgur.com/a/IAGMU#0 BUG=335313 Review URL: https://codereview.chromium.org/150663013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250943 0039d316-1c4b-4281-b951-d872f2087c98
-
msw@chromium.org authored
BUG=330735 TEST=none R=sky@chromium.org Review URL: https://codereview.chromium.org/161803002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250942 0039d316-1c4b-4281-b951-d872f2087c98
-
xiyuan@chromium.org authored
BUG=333900 Review URL: https://codereview.chromium.org/149843004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250941 0039d316-1c4b-4281-b951-d872f2087c98
-
tapted@chromium.org authored
We want to track effectiveness of the app launcher install education pages in enabling users to find, and start using, the app launcher when it is auto-enabled upon installing the first v2 packaged app. The launcher is not auto-shown for the "first" install, to encourage users to learn where it is. This CL marks "how" the app launcher is enabled (e.g. command line flag, webstore, etc.), and when the enable occurs. Then, when the user shows the app list, the enable method and time taken to show it is recorded. We also need to record users that "never" show the app list, or who see the app list show automatically upon installing a _second_ app. One hour is chosen as a timeout: if no value is recorded after one hour, a value is recorded in the "last" bucket for the time taken. BUG=314235 TBR=xiyuan@chromium.org Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=250348 Review URL: https://codereview.chromium.org/143683004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250938 0039d316-1c4b-4281-b951-d872f2087c98
-
kinuko@chromium.org authored
BUG=285976 TEST=content_browsertests:ServiceWorkerVersionBrowserTest.Install* Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=250804 Review URL: https://codereview.chromium.org/153553008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250936 0039d316-1c4b-4281-b951-d872f2087c98
-
rdsmith@chromium.org authored
(It uses --single-process, which is disabled on branded builders.) BUG=342418 Review URL: https://codereview.chromium.org/161093002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250934 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250932 0039d316-1c4b-4281-b951-d872f2087c98
-
pilgrim@chromium.org authored
BUG=338338 Review URL: https://codereview.chromium.org/160023003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250930 0039d316-1c4b-4281-b951-d872f2087c98
-
dnicoara@chromium.org authored
Adding Ozone CursorLoader and necessary API functions to allow setting the cursor in SoftwareFactoryOzone BUG= Review URL: https://codereview.chromium.org/158023006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250929 0039d316-1c4b-4281-b951-d872f2087c98
-
gab@chromium.org authored
Also constantifying trial/group names for that trial to avoid duplicating hard-coded strings. Review URL: https://codereview.chromium.org/147053005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250928 0039d316-1c4b-4281-b951-d872f2087c98
-
rvargas@chromium.org authored
BUG=330931 R=eroman@chromium.org Review URL: https://codereview.chromium.org/159913003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250927 0039d316-1c4b-4281-b951-d872f2087c98
-
kalman@chromium.org authored
the Storage API docs are now hosted at extensions/storage not extensions/storage.html. Paths which include .html are redirected to remove the .html. BUG=294008 R=yoz@chromium.org Review URL: https://codereview.chromium.org/148293018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250926 0039d316-1c4b-4281-b951-d872f2087c98
-
davidben@chromium.org authored
Tests have changed significantly since the flake. Hopefully all the base::RunLoop work has fixed it now. The stray content::RunMessageLoop is gone. BUG=171546 Review URL: https://codereview.chromium.org/161133004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250925 0039d316-1c4b-4281-b951-d872f2087c98
-
alokp@chromium.org authored
With the introduction of GPU rasterization, we no longer rasterize to a bitmap. We rasterize directly to a texture-backed SkCanvas. This patch refactors AcquireBufferForRaster into AcquireCanvasForRaster to unify the API used by software and gpu rasterization. It also allows us to cache the gpu canvas with the resource so that we do not need to re-create it whenever a tile needs to be repainted. Creating a new gpu canvas is expensive on command-buffer - both on client and service side. The client side adds a flush every time an FBO is created or destroyed. The service side checks for FBO completeness. This patch eliminates the setup/destroy cost of gpu canvas. BUG=334492 Review URL: https://codereview.chromium.org/157293002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250924 0039d316-1c4b-4281-b951-d872f2087c98
-
https://codereview.chromium.org/153403004/rlp@chromium.org authored
BUG=325439, 289023 Review URL: https://codereview.chromium.org/148003004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250921 0039d316-1c4b-4281-b951-d872f2087c98
-
donnd@chromium.org authored
BUG=341761 Review URL: https://codereview.chromium.org/160053004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250920 0039d316-1c4b-4281-b951-d872f2087c98
-
vivek.vg@samsung.com authored
We pack width/height in ConvertToJavaBitmap into gfx::Size to be unpacked in CreateJavaBitmap while calling the BitmapHelper.createBitmap method from Java. This is not needed and should be called directly using width and height as is. R=danakj Review URL: https://codereview.chromium.org/159463004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250916 0039d316-1c4b-4281-b951-d872f2087c98
-
wtc@chromium.org authored
R=eroman@chromium.org BUG=none TEST=none NOTRY=true Review URL: https://codereview.chromium.org/162473002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250915 0039d316-1c4b-4281-b951-d872f2087c98
-
arthure@chromium.org authored
Formerly known as CL 138213007. See notes over there: https://codereview.chromium.org/138213007/ NOTRY=true Review URL: https://codereview.chromium.org/160593003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250914 0039d316-1c4b-4281-b951-d872f2087c98
-
creis@chromium.org authored
BUG=261313 TEST=RenderFrameHostManagerTest.NoScriptAccessAfterSwapOut passes. R=nasko@chromium.org Review URL: https://codereview.chromium.org/162083002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250909 0039d316-1c4b-4281-b951-d872f2087c98
-
sergeyu@chromium.org authored
- Previously the UI was getting local host ID before getting state, but it doesn't make sense when host is not started. - 2 minor changes in HostList and HostController around host state initialization. BUG=149744 R=jamiewalch@chromium.org Review URL: https://codereview.chromium.org/160963003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250908 0039d316-1c4b-4281-b951-d872f2087c98
-
yoshiki@chromium.org authored
And also remove yoshiki@ from the previous a11y and task_manager. BUG=none TBR=satorux@chromium.org NOTRY=True Review URL: https://codereview.chromium.org/149753012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250903 0039d316-1c4b-4281-b951-d872f2087c98
-
mangini@chromium.org authored
to improve performance of the docserver, avoiding hit Cloud Storage on every request. BUG=343315 NOTRY=true Review URL: https://codereview.chromium.org/162043003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@250901 0039d316-1c4b-4281-b951-d872f2087c98
-