- 28 Jul, 2010 22 commits
-
-
michaeln@chromium.org authored
BUG=none TEST=manual Review URL: http://codereview.chromium.org/3076005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53890 0039d316-1c4b-4281-b951-d872f2087c98
-
michaeln@chromium.org authored
BUG=none TEST=manual Review URL: http://codereview.chromium.org/2832086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53889 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=50107 TEST=none Review URL: http://codereview.chromium.org/3063011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53888 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=50107 TEST=Reload should be left of home Review URL: http://codereview.chromium.org/3056023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53887 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
Rename some resource files for clarity, or to fit better with upcoming theme resources. Does not rename the identifiers yet, so as to minimize code change. BUG=50107 TEST=none Review URL: http://codereview.chromium.org/3035033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53886 0039d316-1c4b-4281-b951-d872f2087c98
-
fbarchard@chromium.org authored
BUG=48037 TEST=layout tests should still pass for media Review URL: http://codereview.chromium.org/3005034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53885 0039d316-1c4b-4281-b951-d872f2087c98
-
yusukes@google.com authored
BUG=chromium-os:50332 TEST=git try -b linux_chromeos_valgrind. Review URL: http://codereview.chromium.org/2868070 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53884 0039d316-1c4b-4281-b951-d872f2087c98
-
suzhe@chromium.org authored
BUG=50447 TEST=none Review URL: http://codereview.chromium.org/3033034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53883 0039d316-1c4b-4281-b951-d872f2087c98
-
phajdan.jr@chromium.org authored
Added error code check in DoDataConnectComplete, which falls back to PASV if the connection with EPSV has timed out, and stops the transaction in case of any other error. BUG=48285 TEST=navigate to ftp.apc.com, it should succeed and display a directory listing Review URL: http://codereview.chromium.org/3033028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53882 0039d316-1c4b-4281-b951-d872f2087c98
-
satorux@chromium.org authored
This only includes boolean settings in the dialog. I will fill in other stuff in later CLs. BUG=chromium-os:4809 TEST=manually check on the netbook by uncommenting TODO lines. Review URL: http://codereview.chromium.org/3067006 Patch from Takayoshi Kochi <kochi@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53881 0039d316-1c4b-4281-b951-d872f2087c98
-
dhollowa@chromium.org authored
Changes unique id matching that happens between browser and renderer. Unique ids sent between processes are now combined in the case where credit card and address combination suggestions are supplied to popup. BUG=50264 TEST=AutoFillManagerTest.FillCreditCardForm, AutoFillManagerTest.FillNonBillingFormSemicolon, AutoFillManagerTest.FillBillFormSemicolon Review URL: http://codereview.chromium.org/3039031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53879 0039d316-1c4b-4281-b951-d872f2087c98
-
jhawkins@chromium.org authored
BUG=50080 TEST=none Review URL: http://codereview.chromium.org/3033033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53878 0039d316-1c4b-4281-b951-d872f2087c98
-
alyssad@chromium.org authored
Review URL: http://codereview.chromium.org/2857018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53877 0039d316-1c4b-4281-b951-d872f2087c98
-
tony@chromium.org authored
The comment for ReadRawData reads: // If returning true, data was read from the job. buf will contain // the data, and bytes_read will receive the number of bytes read. ... // If returning false, an error occurred or an async IO is now pending. // If async IO is pending, the status of the request will be // URLRequestStatus::IO_PENDING, and buf must remain available until the // operation is completed. See comments on URLRequest::Read for more info. I interpret this to mean that an implementer should never set status to IO_PENDING and return true, but that's what the slow download job does: ... SetStatus(URLRequestStatus(URLRequestStatus::IO_PENDING, 0)); DCHECK(!is_done()); return true; ... Unfortunately this class is part of the Download UI tests which are already flaky/broken so it's not possible to verify that this change doesn't further break those tests. But the current implementation is clearly broken and should be fixed. BUG=50399 TEST=ran ui_tests, verified no additional breakage Review URL: http://codereview.chromium.org/3052016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53876 0039d316-1c4b-4281-b951-d872f2087c98
-
alyssad@chromium.org authored
Review URL: http://codereview.chromium.org/3007014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53875 0039d316-1c4b-4281-b951-d872f2087c98
-
victorw@chromium.org authored
TBR=jorlow TEST=none BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53874 0039d316-1c4b-4281-b951-d872f2087c98
-
erg@google.com authored
DOMUIThumbnailSource objects are deleted on the IO thread, while they are used on the UI thread. The DataSource documentation says that they should not live on the IO thread, but for almost all DataSources, the only reference held is the one by ChromeURLDataManager, which lives on the IO thread. Since I had a racy stack where the object was being used on the UI thread while its destructor was running on the IO thread, forcing destruction on the UI thread should fix the crash. Pretty much everything but changing the templated base class of DataSource to always DeleteOnUIThread is my usual cleanup. BUG=34115 TEST=none Review URL: http://codereview.chromium.org/3061009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53873 0039d316-1c4b-4281-b951-d872f2087c98
-
scherkus@chromium.org authored
This fixes a host of seeking, synchronization and layout test issues but does incur a CPU performance hit while seeking. In the worst case a seek could take quite some time if the content was high resolution H.264 and we attempted to seek to right before a keyframe. We'll see how people like the new behaviour and back this change out if needed. BUG=48984 TEST=layout tests, media_unittests Review URL: http://codereview.chromium.org/3032030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53872 0039d316-1c4b-4281-b951-d872f2087c98
-
nick@chromium.org authored
IDs, but also force IS_UNAPPLIED. This allows BV to be valid in case the item is marked UNSYNCED and later commits, but still allows the update application to proceed if it's not. BUG=49715 TEST=See bug Review URL: http://codereview.chromium.org/3054021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53871 0039d316-1c4b-4281-b951-d872f2087c98
-
mirandac@google.com authored
Add new search engine logos to template url data. This CL also reorganizes the way logos and search engine type data are stored. Because the search engine dialog is no longer an experiment running on few locales, move the data and logos into the template_url_prepopulate_data for each search engine. BUG=42612 TEST=search engine dialog works as expected. Review URL: http://codereview.chromium.org/3040022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53870 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
Add new images for M6 theme changes. This is done separately so that the code changes that use them can be run on the trybots. TBR=ben BUG=50107 TEST=none Review URL: http://codereview.chromium.org/3013037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53869 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=50107 TEST=none Review URL: http://codereview.chromium.org/2847079 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53868 0039d316-1c4b-4281-b951-d872f2087c98
-
- 27 Jul, 2010 18 commits
-
-
suzhe@chromium.org authored
BUG=none TEST=Make sure interactive_ui_tests can build on OS X 10.5 correctly. Review URL: http://codereview.chromium.org/3046027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53866 0039d316-1c4b-4281-b951-d872f2087c98
-
bradnelson@google.com authored
BUG=None TEST=None TBR=thestig Review URL: http://codereview.chromium.org/2009004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53864 0039d316-1c4b-4281-b951-d872f2087c98
-
victorw@chromium.org authored
TBR=jorlow TEST=none BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53863 0039d316-1c4b-4281-b951-d872f2087c98
-
scherkus@chromium.org authored
BUG=none TEST=should work exactly the same Review URL: http://codereview.chromium.org/3069006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53862 0039d316-1c4b-4281-b951-d872f2087c98
-
wtc@chromium.org authored
Both libxml and its direct dependencies need to define LIBXML_STATIC when libxml is a static library. Right now it is necessary to define this macro only on Windows, but the macro is intended to be cross-platform. R=evan BUG=50048 TEST=Windows build log should not contain "locally defined symbol XXX imported" linker warings such as: libxslt.lib(numbers.obj) : warning LNK4049: locally defined symbol _xmlFree imported Review URL: http://codereview.chromium.org/3063009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53861 0039d316-1c4b-4281-b951-d872f2087c98
-
luchen@google.com authored
Review URL: http://codereview.chromium.org/3047004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53858 0039d316-1c4b-4281-b951-d872f2087c98
-
stuartmorgan@chromium.org authored
Hooks up display of startup pages, removal of pages, and setting the startup pages to the currently open tabs. Uses a select for now, but will eventually be replaced with a List so the favicons can be displayed. BUG=48713 TEST=Startup pages can be viewed, removed, and set to current in DOMUI prefs. Review URL: http://codereview.chromium.org/3046025 TBR=stuartmorgan@chromium.org Review URL: http://codereview.chromium.org/3058018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53857 0039d316-1c4b-4281-b951-d872f2087c98
-
luchen@google.com authored
Review URL: http://codereview.chromium.org/3059005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53856 0039d316-1c4b-4281-b951-d872f2087c98
-
luchen@google.com authored
o3d-webgl: Adjusting Sampler to throw an error if client attempts to use BORDER as uv address mode (not supported in WebGL). Review URL: http://codereview.chromium.org/3038014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53855 0039d316-1c4b-4281-b951-d872f2087c98
-
victorw@chromium.org authored
This could be caused by http://trac.webkit.org/changeset/64124/trunk. Created a bug and assigned to pfeldman to investigate. TBR=pfeldman BUG=50416 TESt=unit test passes git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53854 0039d316-1c4b-4281-b951-d872f2087c98
-
luchen@google.com authored
Fixes a small typo; reported in: http://groups.google.com/group/o3d-discuss/browse_thread/thread/db4be6e10594af70?hl=en Review URL: http://codereview.chromium.org/3045017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53853 0039d316-1c4b-4281-b951-d872f2087c98
-
ajwong@chromium.org authored
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53852 0039d316-1c4b-4281-b951-d872f2087c98
-
ajwong@chromium.org authored
Also, the old method of passing around a pointer was not safe due to object lifetime issues. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53851 0039d316-1c4b-4281-b951-d872f2087c98
-
jschuh@google.com authored
BUG=37201 TEST=net_unittests.exe --gtest_filter=NetUtilTest.IDNToUnicode* Review URL: http://codereview.chromium.org/3011012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53850 0039d316-1c4b-4281-b951-d872f2087c98
-
stuartmorgan@chromium.org authored
Hooks up display of startup pages, removal of pages, and setting the startup pages to the currently open tabs. Uses a select for now, but will eventually be replaced with a List so the favicons can be displayed. BUG=48713 TEST=Startup pages can be viewed, removed, and set to current in DOMUI prefs. Review URL: http://codereview.chromium.org/3046025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53849 0039d316-1c4b-4281-b951-d872f2087c98
-
sanjeevr@chromium.org authored
BUG=None TEST=Verify that the internal PDF plugin is disabled by default.s Review URL: http://codereview.chromium.org/3052015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53848 0039d316-1c4b-4281-b951-d872f2087c98
-
pkasting@chromium.org authored
BUG=50107 TEST=none Review URL: http://codereview.chromium.org/3058011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53847 0039d316-1c4b-4281-b951-d872f2087c98
-
rafaelw@chromium.org authored
Extension functions should be allowed to make repeat requests to external protocol handling without needing a user gesture (see bug). This allows them to do so (and changes the method name for clarity). BUG=39178 TEST=NONE Review URL: http://codereview.chromium.org/2884040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53846 0039d316-1c4b-4281-b951-d872f2087c98
-