- 24 Oct, 2011 40 commits
-
-
rsesek@chromium.org authored
This also fixes a bug in PluginLoaderPosix where if the last N plugins in the canonical list crash, the callbacks are never run. BUG=17863 TEST=On Linux, plugins work as before. Review URL: http://codereview.chromium.org/8372015 TBR=rsesek@chromium.org Review URL: http://codereview.chromium.org/8351014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106977 0039d316-1c4b-4281-b951-d872f2087c98
-
jond@google.com authored
Review URL: http://codereview.chromium.org/8004005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106973 0039d316-1c4b-4281-b951-d872f2087c98
-
akalin@chromium.org authored
Make Cryptographer emit notifications whenever the set of encrypted types changes and also when encryption is complete. Propagate that up to the ProfileSyncService. Since retrieving the encrypted types info requires holding a transaction, that may lead to deadlocks. This prevents that. Remove some unnecessary functions and append ForTest to some other ones. BUG=95619,100698 TEST= Review URL: http://codereview.chromium.org/8356026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106972 0039d316-1c4b-4281-b951-d872f2087c98
-
derat@chromium.org authored
BUG=none TEST=git status TBR=ronghuawu Review URL: http://codereview.chromium.org/8383015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106970 0039d316-1c4b-4281-b951-d872f2087c98
-
rustema@google.com authored
BUG=101109 TEST=chrome/browser/prefs/incognito_mode_prefs_unittest.cc Review URL: http://codereview.chromium.org/8373019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106969 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
We're moving all the extension api implementations out of browser/extensions into the directory with the code they are automating. BUG=101244 Review URL: http://codereview.chromium.org/8372021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106968 0039d316-1c4b-4281-b951-d872f2087c98
-
junov@chromium.org authored
BUG=98273 TEST=none REVIEW=http://codereview.chromium.org/8052016/ Review URL: http://codereview.chromium.org/8052016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106967 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@chromium.org authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8360023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106966 0039d316-1c4b-4281-b951-d872f2087c98
-
zelidrag@chromium.org authored
BUG=chromium-os:21738, chromium-os:20525 TEST=none Review URL: http://codereview.chromium.org/8271025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106964 0039d316-1c4b-4281-b951-d872f2087c98
-
bsy@google.com authored
missed a cast in XYZZY magic function. sigh. TBR= sehr@google.com BUG= http://code.google.com/p/chromium/issues/detail?id=87490 Review URL: http://codereview.chromium.org/8373024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106963 0039d316-1c4b-4281-b951-d872f2087c98
-
rsesek@chromium.org authored
This also fixes a bug in PluginLoaderPosix where if the last N plugins in the canonical list crash, the callbacks are never run. BUG=17863 TEST=On Linux, plugins work as before. Review URL: http://codereview.chromium.org/8372015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106962 0039d316-1c4b-4281-b951-d872f2087c98
-
bryeung@chromium.org authored
Add a new switch (--show-component-extension-options) that causes the built-in component extensions to be displayed on chrome://settings/extensions. BUG=none TEST=none Review URL: http://codereview.chromium.org/8332006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106960 0039d316-1c4b-4281-b951-d872f2087c98
-
rdsmith@chromium.org authored
Handles two cases: Last window close (-> shuts download browser), and last incognito window in an incognito profile (-> cancels downloads on that profile). Note that this doesn't cover the macintosh, which goes through different code (http://crbug.com/88419) and the warning for incognito close is not ideal (http://crbug.com/88421). This CL includes some modularization to make resolving those issues easier. BUG=61257 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=105662 Review URL: http://codereview.chromium.org/7466033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106958 0039d316-1c4b-4281-b951-d872f2087c98
-
anantha@chromium.org authored
omnibox.OmniboxTest.testOmniboxSearchHistory is failing once in a while on Linux 64 bit ubuntu builder. Disabled to investiagte. Bug=91033 Review URL: http://codereview.chromium.org/8375031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106954 0039d316-1c4b-4281-b951-d872f2087c98
-
michaelbai@google.com authored
Currently only support run base_unittests BUG= TEST= Review URL: http://codereview.chromium.org/8364020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106953 0039d316-1c4b-4281-b951-d872f2087c98
-
jar@chromium.org authored
I also fought a terrible (but educational) fight with Thread Local Store, and its ability to do cleanup (call destructors) at thread exit (notably applicable to Worker Threads). Thta is why there were soooo many test bot runs and tiny checkins. I now have a plan in mind that won't rely on that functionality. The code seems to work cross-platform, but if I have trouble with Linux, I'll repeatedly leak ThreadData contexts temporarily on that platform. Given that the code is only enabled under Debug, this is not yet a real problem. Each CL I write for this code also includes a bunch of cleanup. In this case, I changed the Write() methods to WriteHTML(), since I didn't want any confusion with JSON writing etc. I also did a bunch of tiny cleanups which should not have changed what the code does. r=rtenneti Review URL: http://codereview.chromium.org/8313013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106952 0039d316-1c4b-4281-b951-d872f2087c98
-
cpu@chromium.org authored
Because other binaries, besides chrome.dll need this, or else they will fail to load on vista or xp, once we remove the manual binding to win7-only apis. BUG=none TEST= waterfall is not red Review URL: http://codereview.chromium.org/8370019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106950 0039d316-1c4b-4281-b951-d872f2087c98
-
jam@chromium.org authored
Convert URLFetcher::Delegates to use an interface in content/public/common. Also remove the old URLFetcher delegate callback while I'm touching all of them.BUG=98716,83592 Review URL: http://codereview.chromium.org/8373021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106949 0039d316-1c4b-4281-b951-d872f2087c98
-
yzshen@chromium.org authored
It is caused by using a TabContentsWrapper pointer after it has been freed. BUG=100680 TEST=BrowserTest.TestFullscreenBubbleMouseLockState should work on Linux. Review URL: http://codereview.chromium.org/8369013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106948 0039d316-1c4b-4281-b951-d872f2087c98
-
nqk836@motorola.com authored
BUG=100658 TEST=Try to add an invalid URL in start pages list in chrome://setttings. It should have no effect. Review URL: http://codereview.chromium.org/8349030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106947 0039d316-1c4b-4281-b951-d872f2087c98
-
kushi.p@gmail.com authored
These methods exist for casting a basic id to a more specific (NSObject derived) type. BUG=86004 TEST=Initialise common NS objects and confirm ObjCCast*<>() casts to the expected result. Review URL: http://codereview.chromium.org/8356024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106946 0039d316-1c4b-4281-b951-d872f2087c98
-
chrome-admin@google.com authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106945 0039d316-1c4b-4281-b951-d872f2087c98
-
jchaffraix@chromium.org authored
TBR=yuzo, yurys Review URL: http://codereview.chromium.org/8379010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106944 0039d316-1c4b-4281-b951-d872f2087c98
-
xiyuan@chromium.org authored
Support turning on webkit transparency by setting a background image. - Update RenderWidget::PaintRect to handle background transparency; - Update BackingStoreSkia::PaintToBackingStore to handle webkit transparency; - Turn on compositing of RenderWidgetHostViewAura's layer when we set a background with transparency; BUG=98311 TEST=Verify when applist change (chromium:98308) is in. Review URL: http://codereview.chromium.org/8369006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106943 0039d316-1c4b-4281-b951-d872f2087c98
-
nsylvain@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106942 0039d316-1c4b-4281-b951-d872f2087c98
-
xiyuan@chromium.org authored
BUG=none. TEST=DOMView should be visible in Aura. Review URL: http://codereview.chromium.org/8373004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106941 0039d316-1c4b-4281-b951-d872f2087c98
-
http://codereview.chromium.org/8372020/bradnelson@google.com authored
Committing for krasin@chromium.org Review URL: http://codereview.chromium.org/8379007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106935 0039d316-1c4b-4281-b951-d872f2087c98
-
avi@chromium.org authored
BUG=95573 TEST=none Review URL: http://codereview.chromium.org/8384001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106933 0039d316-1c4b-4281-b951-d872f2087c98
-
aa@chromium.org authored
We're moving all the extension api implementations out of browser/extensions into the directory with the code they are automating. BUG=101244 Review URL: http://codereview.chromium.org/8374024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106932 0039d316-1c4b-4281-b951-d872f2087c98
-
ahendrickson@chromium.org authored
Special case download interrupt reason if we get a CANCELED/ABORTED status. BUG=101044 TEST=None Review URL: http://codereview.chromium.org/8369005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106928 0039d316-1c4b-4281-b951-d872f2087c98
-
oshima@google.com authored
BUG=none TEST=none Review URL: http://codereview.chromium.org/8359005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106927 0039d316-1c4b-4281-b951-d872f2087c98
-
sky@chromium.org authored
BUG=98345 TEST=none R=ben@chromium.org Review URL: http://codereview.chromium.org/8369007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106926 0039d316-1c4b-4281-b951-d872f2087c98
-
serya@chromium.org authored
BUG=None TEST=None Review URL: http://codereview.chromium.org/8381010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106925 0039d316-1c4b-4281-b951-d872f2087c98
-
jbates@chromium.org authored
Original review: http://codereview.chromium.org/8355024/ BUG=100291 TEST=base_unittests, content_unittests Review URL: http://codereview.chromium.org/8373018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106924 0039d316-1c4b-4281-b951-d872f2087c98
-
tfarina@chromium.org authored
BUG=68267 R=sky@chromium.org Review URL: http://codereview.chromium.org/8373016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106920 0039d316-1c4b-4281-b951-d872f2087c98
-
loislo@chromium.org authored
Hybi-10 (corresponds to Sec-WebSocket-Version: 8) -- "Frames sent from the server to the client are not masked." Hybi-17 (corresponds to Sec-WebSocket-Version: 13) -- "A server MUST NOT mask any frames that it sends to the client. A client MUST close a connection if it detects a masked frame." BUG=101340 TEST=none Review URL: http://codereview.chromium.org/8370035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106918 0039d316-1c4b-4281-b951-d872f2087c98
-
kevers@chromium.org authored
BUG=Work in progress towards fixing chromium:100392. TEST= Review URL: http://codereview.chromium.org/8366016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106917 0039d316-1c4b-4281-b951-d872f2087c98
-
leandrogracia@chromium.org authored
BUG=97388 TEST=none Review URL: http://codereview.chromium.org/8321003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106916 0039d316-1c4b-4281-b951-d872f2087c98
-
vollick@chromium.org authored
High level description: - LayerPropertySetter is now LayerAnimator since it manages implicit/explicit animations and the animation queue. - LayerAnimationElement represents an animation curve. - LayerAnimationSequence owns a collection of elements. - The animator works as follows: o Has a queue of sequences and a collection of running sequences. o It knows the start time of each running sequence. o While there are running sequences, LayerAnimator::Step(base::TimeTicks now) is called periodically, and each of the running sequences are updated. BUG=None TEST=compositor_unittests, base_unittests Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=106768 Review URL: http://codereview.chromium.org/8247009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106915 0039d316-1c4b-4281-b951-d872f2087c98
-
glider@chromium.org authored
Extend the suppression for gleUpdateState (issue 79994) Extend the suppression for HALCADClient::AddPropertyListener (issue 46186) Suppress a leak in InProcessBrowserTest.Empty (issue 101359) Extend the suppression for the leaks in SecTrustEvaluate (issue 96300) Issue 79878 is a metabug for mac_valgrind trybot issues. TBR=oshima BUG=46186,79994,79878,96300,101359 Review URL: http://codereview.chromium.org/8381008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106914 0039d316-1c4b-4281-b951-d872f2087c98
-