- 21 Nov, 2011 40 commits
-
-
dgarrett@chromium.org authored
and what type of executable it is, if it is. BUG=None TEST=None Review URL: http://codereview.chromium.org/8558009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110993 0039d316-1c4b-4281-b951-d872f2087c98
-
abarth@chromium.org authored
isUnique is the new name for isEmpty. Review URL: http://codereview.chromium.org/8604008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110992 0039d316-1c4b-4281-b951-d872f2087c98
-
dhollowa@chromium.org authored
Adds leaks suppression for MimeTypeTests on Mac. BUG=105022 TEST=Valgrind goes green on Mac Webkit bot TBR=abarth@chromium.org Review URL: http://codereview.chromium.org/8504002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110991 0039d316-1c4b-4281-b951-d872f2087c98
-
nduca@chromium.org authored
TBR=jbates@chromium.org Review URL: http://codereview.chromium.org/8562009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110990 0039d316-1c4b-4281-b951-d872f2087c98
-
msw@chromium.org authored
BUG=98323 TEST=none Review URL: http://codereview.chromium.org/8547002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110989 0039d316-1c4b-4281-b951-d872f2087c98
-
jar@chromium.org authored
Try to make sure that the destructor at thread termination for TCMalloc is called later than most any other destructors. If other destructors are called later, and if they use malloc, then TCMalloc will start a new instance, and never cleanup :-( r=rvargas BUG=103209 Review URL: http://codereview.chromium.org/8550005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110987 0039d316-1c4b-4281-b951-d872f2087c98
-
dcheng@chromium.org authored
BUG=none TEST=trybots Review URL: http://codereview.chromium.org/8500008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110986 0039d316-1c4b-4281-b951-d872f2087c98
-
dpapad@chromium.org authored
BUG=NONE TEST=NONE Review URL: http://codereview.chromium.org/8605001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110985 0039d316-1c4b-4281-b951-d872f2087c98
-
benjhayden@chromium.org authored
Review URL: http://codereview.chromium.org/8503018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110984 0039d316-1c4b-4281-b951-d872f2087c98
-
jrg@google.com authored
BUG= TEST= Review URL: http://codereview.chromium.org/8536052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110983 0039d316-1c4b-4281-b951-d872f2087c98
-
jrg@google.com authored
BUG= TEST= Review URL: http://codereview.chromium.org/8536051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110982 0039d316-1c4b-4281-b951-d872f2087c98
-
viettrungluu@chromium.org authored
Also, remove flash_udp_socket.{cc,h}. They aren't actually used by Flapper right now (and any new usage should use udp_socket_private.{cc,h}). TEST=builds TBR=dmichael@chromium.org Review URL: http://codereview.chromium.org/8561033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110981 0039d316-1c4b-4281-b951-d872f2087c98
-
sadrul@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8575017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110980 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Fix race in PluginDataRemoverImpl going away while it's still being used on the IO thread, which was introduced in 110530. This also fix the incorrect usage of PluginService::OpenChannelToNpapiPlugin on the UI thread which existed before. BUG=104553,cros:23179 Review URL: http://codereview.chromium.org/8603012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110979 0039d316-1c4b-4281-b951-d872f2087c98
-
ivankr@chromium.org authored
BUG=chromium-os:23161 TEST=Manual Review URL: http://codereview.chromium.org/8576013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110978 0039d316-1c4b-4281-b951-d872f2087c98
-
joaodasilva@chromium.org authored
This call has guaranteed behavior regarding notifications of observers, which can be relied upon to build test infrastructure that sets up policy. Added the provider as an argument to OnUpdatePolicy. Added BrowserPolicyConnector::FetchCloudPolicy and ResetCloudPolicy. TEST=All works as before Review URL: http://codereview.chromium.org/8586030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110977 0039d316-1c4b-4281-b951-d872f2087c98
-
avi@chromium.org authored
BUG=104314 TEST=no change Review URL: http://codereview.chromium.org/8470005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110976 0039d316-1c4b-4281-b951-d872f2087c98
-
ajwong@chromium.org authored
The main API change IgnoreResult() and fully currying. See unittest for what the new API looks like. The rest of the changes are done to support that. Previously, IgnoreReturn could not be used with WeakPtr<> Bind()s as it was applied after the fact to the Callback object. Now, IgnoreResult() wraps the function like Unretained(). As an incidental benefit, the new implementation gave us fully currying for free. Also, the new implementation scales better when supporting higher arities of functions. The new type growth is: (n^2 + 20n) / 2 as opposed to (3n^2 + 17n) / 2 where n == arity. For n = 6 and n=10, the new implementation has 81 and 155 templates respectively. The old implementation had 105 and 235 templates respectively. BUG=35233,98919,98542 TEST=existing unittests Review URL: http://codereview.chromium.org/8483003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110975 0039d316-1c4b-4281-b951-d872f2087c98
-
scottmg@chromium.org authored
Support setting fake gamepad data from WebKit. In support of DRT code to be added to WebKit here https://bugs.webkit.org/show_bug.cgi?id=69451 BUG=79050 Review URL: http://codereview.chromium.org/8561021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110974 0039d316-1c4b-4281-b951-d872f2087c98
-
ivankr@chromium.org authored
BUG=None TEST=Manual using chrome://histogram Review URL: http://codereview.chromium.org/8575018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110973 0039d316-1c4b-4281-b951-d872f2087c98
-
stevenjb@google.com authored
This was originally submitted as http://codereview.chromium.org/8539038/ which was reverted because of a failing test on win. This reverts the code back to a single instance of BrowserMainParts, with auxillary parts (Gtk, Views, Aura, Touch) implemented from a new base class, ChromeBrowserParts, which has a Chrome specific interface, allowing initialization to be better subdivided. This should fix the notifications auto tests. This CL also addresses the test failure on win (and a test failure on linux_chromeos triggered by the windows fix). BUG=103821 TEST=Make sure all tests and autotests run TBR=jam@chromium.org Review URL: http://codereview.chromium.org/8480032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110972 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
R=jam@chromium.org Review URL: http://codereview.chromium.org/8547003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110971 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110970 0039d316-1c4b-4281-b951-d872f2087c98
-
steveblock@chromium.org authored
Also disable failing DevToolsSanityTest.TestScriptsTabIsPopulatedOnInspectedPageRefresh BUG=104986 TBR=adamk Review URL: http://codereview.chromium.org/8616001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110969 0039d316-1c4b-4281-b951-d872f2087c98
-
kristianm@chromium.org authored
BUG=None TEST=None Review URL: http://codereview.chromium.org/8354008 Review URL: http://codereview.chromium.org/8354008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110968 0039d316-1c4b-4281-b951-d872f2087c98
-
dhollowa@chromium.org authored
Extends existing suppression for CGContextShowGlyphsWithAdvances on Mac. BUG=75142 TEST=Valgrind on Mac goes green TBR=jochen@chromium.org Review URL: http://codereview.chromium.org/8615003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110967 0039d316-1c4b-4281-b951-d872f2087c98
-
dhollowa@chromium.org authored
Adds suppressions for BalloonViewHost::Init::GtkWidget leaks. BUG=104998 TEST=Valgrind on ChromiumOS UI goes green TBR=johnnyg@chromium.org Review URL: http://codereview.chromium.org/8527024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110966 0039d316-1c4b-4281-b951-d872f2087c98
-
rch@chromium.org authored
through HTTPS Proxies. This also changes the mechanism used to restart HttpProxyClientSocket requests with auth. Previously the transport socket would be Disconnected, and then re-Connected (which was not implemented for SSLClientSockets). However, the approach was problematic in the face of, for example, ipv6. The new approach is to close the HttpProxyClientSocket, and request a new socket from the pool. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=110529 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=110879 Review URL: http://codereview.chromium.org/8502024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110965 0039d316-1c4b-4281-b951-d872f2087c98
-
http://crrev.com/110076kerz@chromium.org authored
linux-release/sizes: http://build.chromium.org/f/chromium/perf/linux-release/sizes/report.html?history=1500&rev=110802&graph=chrome-si linux-release-64/sizes http://build.chromium.org/f/chromium/perf/linux-release-64/sizes/report.html?history=1500&rev=110802&graph=chrome-si TBR=cmp@chromium.org BUG=none Review URL: http://codereview.chromium.org/8603004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110964 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Get rid of a bunch of view_messages.h includes from chrome by making the TabContentsObserver interface not use a struct from it. Instead, the interface uses a new struct, content::FrameNavigateParams, that's in the public directory. The IPC message's struct derives from it. BUG=98716 Review URL: http://codereview.chromium.org/8603015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110963 0039d316-1c4b-4281-b951-d872f2087c98
-
jamiewalch@google.com authored
BUG=None TEST=Manual Review URL: http://codereview.chromium.org/8587050 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110962 0039d316-1c4b-4281-b951-d872f2087c98
-
wez@chromium.org authored
Review URL: http://codereview.chromium.org/8562003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110960 0039d316-1c4b-4281-b951-d872f2087c98
-
dhollowa@chromium.org authored
Generalizes suppression with "bind" callback name change. BUG=101146 TEST=Valgrind on Chromium OS and Linux go green. TBR=glider@chromium.org Review URL: http://codereview.chromium.org/8616002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110959 0039d316-1c4b-4281-b951-d872f2087c98
-
simonmorris@chromium.org authored
R=jamiewalch@chromium.org Review URL: http://codereview.chromium.org/8558034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110956 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
R=erg@chromium.org Review URL: http://codereview.chromium.org/8608002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110955 0039d316-1c4b-4281-b951-d872f2087c98
-
thakis@chromium.org authored
Turn on -Wexit-time-destructors for (most of) the chrome target. BUG=101600,94925 TEST=none TBR=stevenjb Review URL: http://codereview.chromium.org/8547005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110954 0039d316-1c4b-4281-b951-d872f2087c98
-
wez@chromium.org authored
BUG=104039 R=ben@chromium.org Review URL: http://codereview.chromium.org/8598031 TBR=tfarina@chromium.org Review URL: http://codereview.chromium.org/8547015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110953 0039d316-1c4b-4281-b951-d872f2087c98
-
wez@chromium.org authored
BUG=104039 TBR=ben@chromium.org Review URL: http://codereview.chromium.org/8615001 TBR=tfarina@chromium.org Review URL: http://codereview.chromium.org/8584002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110952 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=104039 TBR=ben@chromium.org Review URL: http://codereview.chromium.org/8615001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110950 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=104039 R=ben@chromium.org Review URL: http://codereview.chromium.org/8598031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110949 0039d316-1c4b-4281-b951-d872f2087c98
-