summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix compile errors from moving number conversions to their own file.brettw@chromium.org2010-07-311-0/+1
| | | | | | | TEST=none BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54455 0039d316-1c4b-4281-b951-d872f2087c98
* Convert more callers of the integer/string functions to usingbrettw@chromium.org2010-07-31164-495/+700
| | | | | | | | | | string_number_conversions.h TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/3013046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54454 0039d316-1c4b-4281-b951-d872f2087c98
* Fix include order of extension_unittest. This is actually to try to fix some ↵brettw@chromium.org2010-07-311-5/+5
| | | | | | | | | weird line ending issue in this file. BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54453 0039d316-1c4b-4281-b951-d872f2087c98
* Adds range checking to glTexSubImage2D, glCompressedTexSubImage2D,gman@chromium.org2010-07-319-21/+473
| | | | | | | | | | | | | glCopyTexSubImage2D. Adds missing range tracking for glCopyTexImage2D Also makes glTexImage2D, glCopyTexImage2D and glCompressedTexImage2D check for errors. TEST=some unit test and ran conformance tests. BUG=none Review URL: http://codereview.chromium.org/3046033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54452 0039d316-1c4b-4281-b951-d872f2087c98
* Reland r54418 - base: Add UnSetEnv function to EnvVarGetter API.tfarina@chromium.org2010-07-3110-40/+98
| | | | | | | | | | | | | | | | | | This reverts commit 7ed083f6d2b1b0a09c8bf9470386ba3e38f2feed. It was reverted due to crbug.com/50663 started failing when I land this patch, so I'm relanding it now again. BUG=None TEST=trybots TBR=thestig@chromium.org Review URL: http://codereview.chromium.org/3043018 Review URL: http://codereview.chromium.org/3076020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54451 0039d316-1c4b-4281-b951-d872f2087c98
* Fix bad license header under chrome/ directory.tfarina@chromium.org2010-07-3116-90/+61
| | | | | | | | | BUG=50266 TEST=None Review URL: http://codereview.chromium.org/2847091 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54450 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 54448 - Add the actual data being read to the OnBytesRead callback, ↵cbentzel@chromium.org2010-07-3110-319/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | take two. I'm not convinced that this actually introduced any problems (as compared to being bitten by flakiness), but I'll spend more time investigating on a weekday. This change was originally committed as http://src.chromium.org/viewvc/chrome?view=rev&revision=53178 then rolled back as http://src.chromium.org/viewvc/chrome?view=rev&revision=53416 due to a breakage in FLAKY_UnknownSize download test. FLAKY_UnknownSize depended on code with a bug that was exposed by this change. That bug has since been fixed and committed as http://src.chromium.org/viewvc/chrome?view=rev&revision=53876 So this change is ready for another round of review. It has not changed at all since being committed. Contributed by: bmcquade@google.com BUG=48192 TEST=Added new unit tests, ran net_unittests. Review URL: http://codereview.chromium.org/3010037 TBR=cbentzel@chromium.org Review URL: http://codereview.chromium.org/3047037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54449 0039d316-1c4b-4281-b951-d872f2087c98
* Add the actual data being read to the OnBytesRead callback, take two.cbentzel@chromium.org2010-07-3110-37/+319
| | | | | | | | | | | | | | | | | | | | | This change was originally committed as http://src.chromium.org/viewvc/chrome?view=rev&revision=53178 then rolled back as http://src.chromium.org/viewvc/chrome?view=rev&revision=53416 due to a breakage in FLAKY_UnknownSize download test. FLAKY_UnknownSize depended on code with a bug that was exposed by this change. That bug has since been fixed and committed as http://src.chromium.org/viewvc/chrome?view=rev&revision=53876 So this change is ready for another round of review. It has not changed at all since being committed. Contributed by: bmcquade@google.com BUG=48192 TEST=Added new unit tests, ran net_unittests. Review URL: http://codereview.chromium.org/3010037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54448 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 481.0 to 482.0chrome-release@google.com2010-07-311-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54444 0039d316-1c4b-4281-b951-d872f2087c98
* Convert src/remoting to std::string/char* away from wstring/wchar_t*.viettrungluu@chromium.org2010-07-315-40/+17
| | | | | | | | | | | This is easy now that DictionaryValue uses std::string for keys. BUG=23581 TEST=remoting_unittests Review URL: http://codereview.chromium.org/3060034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54441 0039d316-1c4b-4281-b951-d872f2087c98
* Added an IPC server in the service process to listen to commands. This is ↵sanjeevr@chromium.org2010-07-3110-35/+263
| | | | | | | | | | | not used yet. BUG=None TEST=None for now since this code is not enabled. Review URL: http://codereview.chromium.org/3041036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54440 0039d316-1c4b-4281-b951-d872f2087c98
* Another quick CrOS fix.thestig@chromium.org2010-07-311-0/+1
| | | | | | | | | BUG=none TEST=none TBR=vtl Review URL: http://codereview.chromium.org/3073015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54439 0039d316-1c4b-4281-b951-d872f2087c98
* Fix CrOS build.thestig@chromium.org2010-07-315-0/+10
| | | | | | | | | BUG=none TEST=CrOS bot goes green? TBR=vtl Review URL: http://codereview.chromium.org/3084006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54438 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: Remove unneeded headers from app/ (part 2)thestig@chromium.org2010-07-3170-98/+21
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/3066014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54437 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup: Remove unneeded headers from app/ (part 3)thestig@chromium.org2010-07-3169-67/+20
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/3054029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54436 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a reliability crash (try 2)thestig@chromium.org2010-07-311-1/+1
| | | | | | | | | BUG=50822 TEST=reliability bot goes green. TBR=vandebo Review URL: http://codereview.chromium.org/3040029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54435 0039d316-1c4b-4281-b951-d872f2087c98
* Added massive-coordinates.svg to test_expecations (will rebaseline soon).atwilson@chromium.org2010-07-311-0/+1
| | | | | | | | | BUG=50825 TBR=jorlow Review URL: http://codereview.chromium.org/3081006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54434 0039d316-1c4b-4281-b951-d872f2087c98
* Convert src/net to use std::string/char* for DictionaryValue keys.viettrungluu@chromium.org2010-07-318-39/+39
| | | | | | | | | | | Hopefully I got them all. BUG=23581 TEST=net_unittests Review URL: http://codereview.chromium.org/3013048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54433 0039d316-1c4b-4281-b951-d872f2087c98
* roll webkit deps: 64357-64370atwilson@chromium.org2010-07-311-1/+1
| | | | | | | | TBR=jorlow Review URL: http://codereview.chromium.org/3054034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54432 0039d316-1c4b-4281-b951-d872f2087c98
* Make ValuesTest use std::strings (instead of wstrings) for dictionary keys.viettrungluu@chromium.org2010-07-312-13/+456
| | | | | | | | | | | For now, keep the deprecated tests to check compatibility. BUG=23581 TEST=base_unittests Review URL: http://codereview.chromium.org/3041038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54431 0039d316-1c4b-4281-b951-d872f2087c98
* Net: Fix leak in SpdyNetworkTransactionTest from r54398.thestig@chromium.org2010-07-311-10/+15
| | | | | | | | | BUG=none TEST=Valgind net goes green. TBR=lzheng Review URL: http://codereview.chromium.org/3078016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54430 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a reliability crash.thestig@chromium.org2010-07-311-0/+3
| | | | | | | | | BUG=50822 TEST=reliability bot goes green. TBR=vandebo Review URL: http://codereview.chromium.org/2883049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54429 0039d316-1c4b-4281-b951-d872f2087c98
* Update test expectations for fast/forms/search-transformed.html.thestig@chromium.org2010-07-311-0/+2
| | | | | | | | | BUG=50816 TEST=Mac Webkit bots go green. TBR=atwilson Review URL: http://codereview.chromium.org/3082010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54428 0039d316-1c4b-4281-b951-d872f2087c98
* o3d-webgl: svn add vertex_source.jspathorn@chromium.org2010-07-311-0/+102
| | | | | | | | | | | Original review: http://codereview.chromium.org/3005015 BUG=none TEST=none TBR=luchen Review URL: http://codereview.chromium.org/3074019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54424 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 54411 - Reduce magnitude of non-default group probabilities for 2 A/B ↵ziadh@chromium.org2010-07-311-4/+4
| | | | | | | | | | | | | | | | tests I reduced the non-default group probabilities for "ConnCountImpact" and "IdleSktToImpact" by an order of magnitude from [20%, 25%] to [2%, 2.5%] respectively. BUG=50802 r=jar Review URL: http://codereview.chromium.org/3056037 TBR=ziadh@chromium.org Review URL: http://codereview.chromium.org/2806099 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54423 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 54418 - base: Add UnSetEnv function to EnvVarGetter API.tfarina@chromium.org2010-07-3110-98/+40
| | | | | | | | | | | | | | BUG=None TEST=out/Debug/base_unittests --gtest_filter=EnvVarTest.UnSetEnvVar Signed-off-by: Thiago Farina <tfarina@chromium.org> Review URL: http://codereview.chromium.org/3043018 TBR=tfarina@chromium.org Review URL: http://codereview.chromium.org/2847092 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54422 0039d316-1c4b-4281-b951-d872f2087c98
* Implement prefetching in chromegavinp@google.com2010-07-3117-26/+269
| | | | | | | | | | | | | | | | | | With this CL (see also issue 2910009), chrome will support basic prefetching. You can optionally deactivate prefetching with the command line argument --disable-prefetch. A new RequestPriority was created as well, IDLE, which is lower than LOWEST. Unfortunately, SPDY has only two bits for priority, so as a temporary measure (pending SPDY v3 which will have three), we have a mapping in SPDY that folds net::LOWEST and net::IDLE together. BUG=13505 TEST=http://gemal.dk/browserspy/prefetch.php Review URL: http://codereview.chromium.org/3050016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54421 0039d316-1c4b-4281-b951-d872f2087c98
* Fix presubmit errors part 2.tfarina@chromium.org2010-07-313-9/+6
| | | | | | | | | BUG=50266 TEST=None Review URL: http://codereview.chromium.org/3064026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54420 0039d316-1c4b-4281-b951-d872f2087c98
* base: Add UnSetEnv function to EnvVarGetter API.tfarina@chromium.org2010-07-3110-40/+98
| | | | | | | | | | | BUG=None TEST=out/Debug/base_unittests --gtest_filter=EnvVarTest.UnSetEnvVar Signed-off-by: Thiago Farina <tfarina@chromium.org> Review URL: http://codereview.chromium.org/3043018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54418 0039d316-1c4b-4281-b951-d872f2087c98
* Add back chromeos preferences include in profile.hpathorn@chromium.org2010-07-311-0/+6
| | | | | | | | | | BUG=none TEST=none TBR=brettw@chromium.org Review URL: http://codereview.chromium.org/2868090 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54414 0039d316-1c4b-4281-b951-d872f2087c98
* widen signature for crash to catch crash on webkit canariesatwilson@chromium.org2010-07-311-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54413 0039d316-1c4b-4281-b951-d872f2087c98
* Fix BrowserFocusTest crashes caused by a callback being invoked for an ↵phajdan.jr@chromium.org2010-07-303-6/+7
| | | | | | | | | | | | | invalid pointer. This depends on http://codereview.chromium.org/2878062/show TEST=interactive_ui_tests:BrowserFocusTest.* BUG=50696, 48913 Review URL: http://codereview.chromium.org/3047030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54412 0039d316-1c4b-4281-b951-d872f2087c98
* Reduce magnitude of non-default group probabilities for 2 A/B testsziadh@chromium.org2010-07-301-4/+4
| | | | | | | | | | | I reduced the non-default group probabilities for "ConnCountImpact" and "IdleSktToImpact" by an order of magnitude from [20%, 25%] to [2%, 2.5%] respectively. BUG=50802 r=jar Review URL: http://codereview.chromium.org/3056037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54411 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Un-tweak omnibox height and spacing and font.shess@chromium.org2010-07-305-10/+7
| | | | | | | | | | | | | | | | | Partial revert of http://codereview.chromium.org/3046029 . Toolbar.xib change to make Omnibox 27px tall again. Omnibox font back to system size, shift baselines to match, inset location icon additional pixel to look good WRT text spacing, adjust ev and keyword bubbles to match, adjust popup to match. BUG=50765, 50575 TEST=See 50765 Review URL: http://codereview.chromium.org/2806098 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54410 0039d316-1c4b-4281-b951-d872f2087c98
* Split ProfileImpl out of profile.cc.pathorn@chromium.org2010-07-305-1344/+1430
| | | | | | | | | | | | | This is a relatively trivial change which moves ProfileImpl into a separate file to avoid depending on its implementation. The fact that no code references ProfileImpl implies that it doesn't need to be public anyway. Does not affect OffTheRecordProfile, since its dependencies are relatively minimal. BUG=none TEST=none Review URL: http://codereview.chromium.org/2806087 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54409 0039d316-1c4b-4281-b951-d872f2087c98
* Add undeclared virtual destructors part 4ziadh@chromium.org2010-07-3012-2/+34
| | | | | | | | | | | | | | | Preventative maintenance for abstract classes that do not declare virtual destructors. Base classes that do not declare their destructors as virtual could potentially lead to memory leaks. These files were discovered using the -Wnon-virtual-dtor flag in g++. r=jar BUG=47469 Review URL: http://codereview.chromium.org/3032046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54408 0039d316-1c4b-4281-b951-d872f2087c98
* Fix late binding induced mismatch of Socket and AuthControllervandebo@chromium.org2010-07-3016-389/+359
| | | | | | | | | | | ClientSocketPool treats all pending SocketParams as interchangeable. Therefore they can not contain any connection specific data. This only affects the Http Proxy tunnel case. The lowest risk change to fix this problem is to create the HttpAuthController in the HttpProxyClientSocket. If we get a 407 and need to restart the Tunnel, the pending HttpProxyClientSocket is returned to the HttpNetworkTransaction in the additional error state of the connection and then complete the auth in a pair of states in the HttpNetworkTransaction. This reintroduces a dependency between tunnel setup and the HttpNetworkTransaction, but that will need to be fixed at a later date. BUG=49493 TEST=existing unit tests + manually visiting many SSL sites through a kerberized http proxy. Review URL: http://codereview.chromium.org/3058013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54405 0039d316-1c4b-4281-b951-d872f2087c98
* GTTF: Add more logging to BrowserKeyboardAccessibility testphajdan.jr@chromium.org2010-07-301-0/+18
| | | | | | | | | | | | | | to help debug hangs and crashes. Using LOG(ERROR) to make sure the output will be always visible and captured on Windows. We need the logs. The issue is hard to reproduce. TEST=BrowserKeyboardAccessibility BUG=50663 Review URL: http://codereview.chromium.org/3071011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54404 0039d316-1c4b-4281-b951-d872f2087c98
* Altered the logic that determines when NaCl is enabled. Previously, we ↵cbiffle@google.com2010-07-305-12/+32
| | | | | | | | | | | | required an explicit command-line flag to use NaCl. This enables NaCl without a flag for apps and extensions that have the special "native_client" permission. Note that this causes the NaCl plugin to be registered unconditionally. We need this, since at the time plugin registration is happening it's not clear whether we're in an extension/app. BUG=45881 TEST=none yet Review URL: http://codereview.chromium.org/3057025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54403 0039d316-1c4b-4281-b951-d872f2087c98
* Asynchronously open the temp file used for Pepper StreamToFile, and delete thedarin@chromium.org2010-07-3010-17/+539
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | temp file once we are done with it. We observe ResourceHandle::OnRequestClosed as a signal of when we should delete the temp file. This corresponds to the WebURLLoader being closed (or canceled). This patch also includes some helpers: base/scoped_callback_factory.h This class makes it easy to allocate Callbacks that hold a weak reference back to the owning class. It works just like ScopedRunnableMethodFactory but for Callbacks instead of RunnableMethods. base/platform_file.h Added a PassPlatformFile class that is useful for cases where a callback may decide not to take ownership of a PlatformFile (as can happen when using ScopedCallbackFactory). chrome/file_system_proxy.{h,cc} This class provides static methods for executing file system commands on the FILE thread. It routes callbacks back to the originating thread to deliver results (file handles, etc.). Note: this file declares a few functions that are not yet used. I anticipate that we'll make use of these and add more functions here to support the Pepper and OWP FileSystem APIs. chrome/chrome_thread_relay.{h,cc} This class is a helper class for proxying calls over to a background ChromeThread and then returning results to the originating ChromeThread. R=brettw BUG=49789 TEST=(more to be added in third_party/ppapi/tests) Review URL: http://codereview.chromium.org/2878062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54402 0039d316-1c4b-4281-b951-d872f2087c98
* Remove deprecated CommandLine API.evan@chromium.org2010-07-306-28/+7
| | | | | | | | | Cleaned up the final few callers, punting the remaining harder ones to TODOs. Review URL: http://codereview.chromium.org/3043033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54400 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 54381 - Revert 54378 - Add content-length to spdy post request header.lzheng@chromium.org2010-07-304-24/+115
| | | | | | | | | | | | | | | | | | I was rolled back due to this failure: http://build.chromium.org/buildbot/waterfall/builders/Modules%20Mac10.6%20(dbg)/builds/9160 I think that failure is not related to this CL (there might be a hidden problem with the WriteError test). I will disable that test and fix it if needed. TEST=spdy_network_transaction_unittest.cc BUG=50545 Review URL: http://codereview.chromium.org/3023029 TBR=mbelshe@google.com Review URL: http://codereview.chromium.org/3041035 TBR=lzheng@chromium.org Review URL: http://codereview.chromium.org/3082009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54398 0039d316-1c4b-4281-b951-d872f2087c98
* o3d-webgl: Skin, SkinEval and VertexSource classes.pathorn@chromium.org2010-07-3011-20/+1067
| | | | | | | | | | This allows the basic sproingie skinning demo to work. BUG=none TEST=o3d-webgl-samples/skinning.html works Review URL: http://codereview.chromium.org/3005015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54397 0039d316-1c4b-4281-b951-d872f2087c98
* Cr.js: Allow cr.define to export getters and setters.arv@chromium.org2010-07-302-2/+35
| | | | | | | | | | | There was a bug in the export code for exporting properties since it was just doing a simple [[Get]] which breaks cr.doc as well as the option to have singletons created lazily by the getter. BUG=None TEST=Options and Bookmarks should still work. Review URL: http://codereview.chromium.org/3031035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54393 0039d316-1c4b-4281-b951-d872f2087c98
* Remove some wstrings used in ui_test.cc.evan@chromium.org2010-07-3015-60/+53
| | | | | | | | | This removes all switch-related wstring APIs from ui_test.cc, and fixes all the callers. Review URL: http://codereview.chromium.org/3066026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54392 0039d316-1c4b-4281-b951-d872f2087c98
* Refine the tool so that, it binary searches for the extensions that crashes ↵alyssad@chromium.org2010-07-301-22/+59
| | | | | | | | the browser (if there is one). Review URL: http://codereview.chromium.org/3060021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54391 0039d316-1c4b-4281-b951-d872f2087c98
* Add --enable-speech-input switch and set ENABLE_INPUT_SPEECH=1satish@chromium.org2010-07-3011-0/+75
| | | | | | | | | | | | | | | | | | Flip the compile-time enable switch for speech input to on and add a command-line switch to put the functionality behind. The command-line flag will be used both on the Chromium side and in WebKit via WebRuntimeFeatures. This CL depends on the webkit patch https://bugs.webkit.org/show_bug.cgi?id=43146 BUG=none TEST=browser_tests --gtest_filter=SpeechInputEnableSwitchTest.* Originally Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=54235, but reverted due to tests failure. Review URL: http://codereview.chromium.org/3064017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54389 0039d316-1c4b-4281-b951-d872f2087c98
* More FRIEND_TEST_ALL_PREFIXES.phajdan.jr@chromium.org2010-07-3023-65/+67
| | | | | | | | | TEST=none BUG=44549 Review URL: http://codereview.chromium.org/3053024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54388 0039d316-1c4b-4281-b951-d872f2087c98
* Mac: Let task manager columns span entire window immediately.thakis@chromium.org2010-07-301-0/+1
| | | | | | | | | BUG=32148 TEST=Open task manager. It should immediately look like it did if you opened it and then resized it by 1px previously. Review URL: http://codereview.chromium.org/3056036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54387 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Give page actions a default image when preview enabled.shess@chromium.org2010-07-301-1/+10
| | | | | | | | | | | | During install it is possible to display (or layout) the action before the images have come in. Provide a default image for this case. BUG=50771 TEST=See bug. Review URL: http://codereview.chromium.org/3047031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54386 0039d316-1c4b-4281-b951-d872f2087c98