- 22 May, 2014 39 commits
-
-
dpranke@chromium.org authored
By adding upload.py to the archive, we can submit patches to telemetry without requiring a full depot_tools checkout. This helps ensure that the standalone zip really is sufficient for telemetry development. R=nduca@chromium.org, dtu@chromium.org BUG=373104 Review URL: https://codereview.chromium.org/281383005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272081 0039d316-1c4b-4281-b951-d872f2087c98
-
beaufort.francois@gmail.com authored
In order to remove unused png files inside the chromium source code, I've first wrote a simple python script to narrow my research. With http://pastebin.com/ZEz4TgzD, I'm doing three things: - Restricting my search to folders I'm familiar with. - Listing all strings that end with ".png" - Grabbing only PNG files that haven't been created in 2014 Then, because I know there might some cases that are not covered, I've looked into *all of them* to make sure they were not used for real anymore. Review URL: https://codereview.chromium.org/296443003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272080 0039d316-1c4b-4281-b951-d872f2087c98
-
tonyg@chromium.org authored
The dashboard no longer needs this hack and in fact it is breaking our ability to bisect in some cases. BUG=371159 Review URL: https://codereview.chromium.org/291153008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272079 0039d316-1c4b-4281-b951-d872f2087c98
-
nasko@chromium.org authored
This is a reland of https://codereview.chromium.org/270883003/, which was reverted because it missed to update one of the callers to CreateRenderViewForRenderManager. Patchset 1 is the equivalent to the previous commit. BUG=357747 Review URL: https://codereview.chromium.org/299703002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272078 0039d316-1c4b-4281-b951-d872f2087c98
-
reveman@chromium.org authored
Some tiles that are required for activation might never be initialized because we move them into EVENTUALLY_BIN before making adjustments based on the memory policy. This is because EVENTUALLY_BIN will map to NEVER_BIN when ALLOW_PREPAINT_ONLY or ALLOW_ABSOLUTE_MINIMUM is the current memory policy. This is fixed by moving low-res tiles into EVENTUALLY_BIN after making adjustments based on current memory policy. BUG=375801 TEST=cc_unittests --gtest_filter=TileManagerTests/TileManagerTest.EnoughMemoryPendingLowResAllowAbsoluteMinimum/* Review URL: https://codereview.chromium.org/291093008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272077 0039d316-1c4b-4281-b951-d872f2087c98
-
pilgrim@chromium.org authored
BUG=338338 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/295933007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272076 0039d316-1c4b-4281-b951-d872f2087c98
-
skyostil@chromium.org authored
Now that crbug.com/374143 is fixed we should be able to run these tests again. BUG=355952 TBR=tonyg@chromium.org Review URL: https://codereview.chromium.org/294973005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272075 0039d316-1c4b-4281-b951-d872f2087c98
-
wez@chromium.org authored
Connect() has ended up acquiring all of the ConnectionToHost's configuration settings as parameters, making calling code harder to read especially as more new parameters are added. Review URL: https://codereview.chromium.org/279273002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272074 0039d316-1c4b-4281-b951-d872f2087c98
-
rvargas@chromium.org authored
BUG=322664 Review URL: https://codereview.chromium.org/293433002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272073 0039d316-1c4b-4281-b951-d872f2087c98
-
robliao@chromium.org authored
Remove Notifications Associated with an Extension When the Extension is Unchecked from the Message Center Settings Added an observer relationship between MessageCenterImpl and MessageCenterSettingsController so that the notification removal would occur when a user unchecked an extension from the settings view. BUG=304364 Review URL: https://codereview.chromium.org/288033014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272072 0039d316-1c4b-4281-b951-d872f2087c98
-
ericu@chromium.org authored
diretory. BUG=375804 Review URL: https://codereview.chromium.org/296113003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272071 0039d316-1c4b-4281-b951-d872f2087c98
-
boliu@chromium.org authored
Currently DeferredInitialize assumes OutputSurface never has delegated_rendering capability. With this change, remove this assumption by always first creating SoftwareRenderer for OutputSurface with deferred_gl_initialization. Then create either DelegatingRenderer or GLRenderer depending on delegated_rendering capability in DeferredInitialize. With support for DelegatingRenderer and DeferredInititalize, have to ensure that all GL resources are returned to child before ReleasGL is called, because ContextProvider is going away after ReleaseGL. Add a DCHECK for this in ResourceProvider::CleanUpGLIfNeeded. New path covered by LayerTreeHostTestDeferredInitialize. BUG=344087 Review URL: https://codereview.chromium.org/286953008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272070 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=346399 TEST=none Review URL: https://codereview.chromium.org/296053005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272069 0039d316-1c4b-4281-b951-d872f2087c98
-
andrewhayden@chromium.org authored
BUG=367239 Review URL: https://codereview.chromium.org/292723003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272068 0039d316-1c4b-4281-b951-d872f2087c98
-
qsr@chromium.org authored
UntypedHandle, as it is, makes chaining messages impossible. A received message is expected to contain UntypedHandle which cannot be generated from a Handle. This CL allows any handle to be transformed into an UntypedHandle. Review URL: https://codereview.chromium.org/291103004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272067 0039d316-1c4b-4281-b951-d872f2087c98
-
zea@chromium.org authored
This allows trybots to verify that mcs_probe compiles, without actually attempting to run it. BUG=364257 Review URL: https://codereview.chromium.org/294963005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272066 0039d316-1c4b-4281-b951-d872f2087c98
-
jiangj@opera.com authored
Move FaviconImageCallback, FaviconResultsCallback and FaviconRawCallback to favicon_base, those types are shared between favicon and history components (methods are declared in FaviconService, but it delegates the work to HistoryService) and only uses types from base:: and favicon_base:: namespaces. Also BookmarkClient::FaviconImageCallback is a copy of FaviconService::FaviconImageCallback, replace it with favicon_base:: version. BUG=372321 TBR=thakis for //chrome outside of //chrome/browser/history, //chrome/browser/favicon Review URL: https://codereview.chromium.org/291643002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272065 0039d316-1c4b-4281-b951-d872f2087c98
-
glider@chromium.org authored
BUG=370240 TBR=lazyboy@chromium.org Review URL: https://codereview.chromium.org/293083006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272064 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-release@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272058 0039d316-1c4b-4281-b951-d872f2087c98
-
isherman@chromium.org authored
This is a recommit of [ https://src.chromium.org/viewvc/chrome?view=rev&revision=271798 ], fixing IWYU. BUG=374296 TEST=compiles R=asvitkine@chromium.org Review URL: https://codereview.chromium.org/294123006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272057 0039d316-1c4b-4281-b951-d872f2087c98
-
pastarmovj@chromium.org authored
BUG=372368 TEST=browser_test Review URL: https://codereview.chromium.org/275913004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272056 0039d316-1c4b-4281-b951-d872f2087c98
-
treib@chromium.org authored
New avatar menu: Don't allow supervised users to edit their profile name. This brings the new menu in line with the user list in about:settings. Mac implementation to follow. BUG=360559 Review URL: https://codereview.chromium.org/294593004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272055 0039d316-1c4b-4281-b951-d872f2087c98
-
yzshen@chromium.org authored
Currently when users forget to include their TypeConverter specializations, they get errors about various methods not defined in TypeConverter<x, y>. By removing the definition of the general template, users will get errors about incomplete type TypeConverter<x, y> used. TEST=None BUG=None Review URL: https://codereview.chromium.org/294473010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272054 0039d316-1c4b-4281-b951-d872f2087c98
-
simonhong@chromium.org authored
This is initial patch for proxy unittests. New testing stubs are added to LayerTreeTest. R=brianderson@chromium.org, danakj@chomium.org BUG=356832 TEST=*ProxyTest* Review URL: https://codereview.chromium.org/242783003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272051 0039d316-1c4b-4281-b951-d872f2087c98
-
wez@chromium.org authored
This is useful for testing. VP9 is already enabled at the client. BUG=260879 Review URL: https://codereview.chromium.org/286213006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272050 0039d316-1c4b-4281-b951-d872f2087c98
-
groby@chromium.org authored
This change gets potential Answers to the Java side of things, enabling rendering in the Omnibox BUG=370192 Review URL: https://codereview.chromium.org/292073002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272049 0039d316-1c4b-4281-b951-d872f2087c98
-
simonhong@chromium.org authored
This flaky test can be removed because it doesn't force any draw operation and it returns regardless of scheduler state. R=danakj@chromium.org BUG=373371 TEST=covered by existing test Review URL: https://codereview.chromium.org/290853003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272048 0039d316-1c4b-4281-b951-d872f2087c98
-
jiayl@chromium.org authored
The command line switch enable-usermedia-screen-capturing will still work. BUG=347641 Review URL: https://codereview.chromium.org/270353002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272046 0039d316-1c4b-4281-b951-d872f2087c98
-
wez@chromium.org authored
Without this the host will crash as soon as the BasicNetworkManager is started, i.e. when a client connection is first received, due to talk_base::Thread::current() being NULL. BUG=375564 Review URL: https://codereview.chromium.org/289863008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272045 0039d316-1c4b-4281-b951-d872f2087c98
-
mef@chromium.org authored
Add url_java.jar, AUTHORS, LICENSE (aggregated with third_party dependencies) and VERSION to cronet package. BUG=354143 Review URL: https://codereview.chromium.org/286033006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272042 0039d316-1c4b-4281-b951-d872f2087c98
-
mtomasz@chromium.org authored
This patch adds a FileStreamReader implementation for provided file systeme. Note, that this is an initial version, which doesn't validate modification time. That will be added in a separate patch. TEST=browser_tests: *FileSystemProvider*ReadFile*, unit_tests: *FileSystemProvider*FileStreamReader* BUG=248427 R=benwells@chromium.org, hirono@chromium.org, kinaba@chromium.org Review URL: https://codereview.chromium.org/288113004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272041 0039d316-1c4b-4281-b951-d872f2087c98
-
mlamouri@chromium.org authored
This replaces OnDisplayBoundsChanged and add a MetricsType parameter so consumers can now which metrics has changed. The current set of MetricsType include bounds, workarea and rotation. BUG=162827 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=271768 Review URL: https://codereview.chromium.org/259253002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272040 0039d316-1c4b-4281-b951-d872f2087c98
-
dcheng@chromium.org authored
These options always default to true now. BUG=308321,366354 R=jabdelmalek@google.com, jam@chromium.org Review URL: https://codereview.chromium.org/293003005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272038 0039d316-1c4b-4281-b951-d872f2087c98
-
dcheng@chromium.org authored
BUG=none R=navabi@google.com Review URL: https://codereview.chromium.org/296833003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272037 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
Changes: 1- Change it to use ui_strings.h 2- Use IDS_APP_OK and IDS_APP_CANCEL from ui_strings. 3- Move to components/infobars/core from chrome/browser/infobars (done with tools/git/move_source_file.py). BUG=373234 TEST=chrome still links and run fine. R=droger@chromium.org, pkasting@chromium.org TBR=ben # for trivial chrome/ changes Review URL: https://codereview.chromium.org/289083004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272036 0039d316-1c4b-4281-b951-d872f2087c98
-
sbc@chromium.org authored
Aside from accepting the new lsb distro name that only changes needed were to the arm cross compile packages list. This was reduced a minimal set. Also gcc-multilib in Trust conflicts with the arm cross compiler so we use gcc-4.8-multilib here instead. NOTRY=true Review URL: https://codereview.chromium.org/294663013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272035 0039d316-1c4b-4281-b951-d872f2087c98
-
tengs@chromium.org authored
BUG=376002 R=xiyuan@chromium.org Review URL: https://codereview.chromium.org/294663012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272032 0039d316-1c4b-4281-b951-d872f2087c98
-
achuith@chromium.org authored
BUG=375717 TEST=trybot, manual NOTRY=True Review URL: https://codereview.chromium.org/297823002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272028 0039d316-1c4b-4281-b951-d872f2087c98
-
jchaffraix@chromium.org authored
There are some documentation in the Chromium tree that is meant for external consumption (which includes WebKit) so it can't use the unprefixed CSS properties / values or functions. Review URL: https://codereview.chromium.org/294893003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272027 0039d316-1c4b-4281-b951-d872f2087c98
-
- 21 May, 2014 1 commit
-
-
dominikg@chromium.org authored
Instead of using simple_mock.MockObject for mocking out subprocess, this CL introduces a MockSubprocess class which is more flexible in handling calls. This way we can avoid the problem of having to know in advance how many calls the profiler will make to subprocess. BUG=375231 Review URL: https://codereview.chromium.org/294893004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272023 0039d316-1c4b-4281-b951-d872f2087c98
-