summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Throttle writes rather than just taking it all at once. Fixes crashing as ↵avi@chromium.org2010-04-221-2/+15
| | | | | | | | | | | well as slowness. BUG=http://crbug.com/41775 ; http://crbug.com/42232 TEST=none Review URL: http://codereview.chromium.org/1756004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45311 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 45305 - Enables EVENTSOURCE in Chromium following this changeset in ↵bulach@chromium.org2010-04-221-1/+0
| | | | | | | | | | | | | | | WebKit: http://trac.webkit.org/changeset/53931 TEST=Existing webkit layout tests must pass: LayoutTests/fast/eventsource and LayoutTests/http/tests/eventsource Review URL: http://codereview.chromium.org/557037 TBR=bulach@chromium.org Review URL: http://codereview.chromium.org/1712006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45310 0039d316-1c4b-4281-b951-d872f2087c98
* Reland "Factor out reading and writing of preferences into |PrefStore|."bauerb@chromium.org2010-04-2227-330/+541
| | | | | | | | | | | | | | | | | | | The CL now applies after r45225 (Throw out preferences files that are corrupt rather than keeping them in read-only mode), which means that the changes in that commit moved to JsonPrefStore. I updated JsonPrefStoreTest.InvalidFile to test the new behavior. *** In order to implement platform-specific policies, reading and writing preferences needs to be abstracted from the |PrefService|. The interface for that is now |PrefStore|, with an implementation |JsonPrefStore|, which stores the pref data in a JSON file. There is another implementation, |DummyPrefStore|, which doesn't store any persistent preferences, and is currently used for tests. Most of the changes are for using the new interface, which is |new PrefService(new JsonPrefStore(filename))| instead of |new PrefService(filename)|. BUG=40259 TEST=PrefServiceTest.*:PrefServiceSetValueTest.*:PrefMemberTest.*:JsonPrefStoreTest.* Review URL: http://codereview.chromium.org/1717007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45309 0039d316-1c4b-4281-b951-d872f2087c98
* Disable crashy TaskManagerBrowserTest.PopulateWebCacheFieldsphajdan.jr@chromium.org2010-04-221-1/+3
| | | | | | | | | | | TBR=jamesr TEST=still crashy BUG=42301 Review URL: http://codereview.chromium.org/1722005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45308 0039d316-1c4b-4281-b951-d872f2087c98
* Enables EVENTSOURCE in Chromium following this changeset in WebKit:bulach@chromium.org2010-04-221-0/+1
| | | | | | | | | | http://trac.webkit.org/changeset/53931 TEST=Existing webkit layout tests must pass: LayoutTests/fast/eventsource and LayoutTests/http/tests/eventsource Review URL: http://codereview.chromium.org/557037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45305 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 384.0 to 385.0chrome-release@google.com2010-04-221-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45303 0039d316-1c4b-4281-b951-d872f2087c98
* Tiny cleanup. Remove an unnecessary call in ChangeLocale().yusukes@google.com2010-04-221-2/+0
| | | | | | | | | | | We don't have to update input method descriptors since they are not related to locales. BUG=none TEST=ran browser_tests. Review URL: http://codereview.chromium.org/1723008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45298 0039d316-1c4b-4281-b951-d872f2087c98
* Compute the horizontal offset at run time in the candidate window.satorux@chromium.org2010-04-221-43/+109
| | | | | | | | | | | | | We used to use a magic number 30 to do the aligning but with this change, we'll compute the horizontal offset at run time. This is much cleaner, and more precise. TEST=manually BUG=crosbug.com/2720 Review URL: http://codereview.chromium.org/1711007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45297 0039d316-1c4b-4281-b951-d872f2087c98
* Marks TestRedirectHTTPToBadHTTPS as flaky.kinuko@chromium.org2010-04-221-1/+1
| | | | | | | | | | BUG=40932 TEST=none TBR=sky@chromium.org Review URL: http://codereview.chromium.org/1747009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45296 0039d316-1c4b-4281-b951-d872f2087c98
* Possible fix / workaround for issue where infobar fails to showjoth@chromium.org2010-04-221-1/+2
| | | | | | | | | BUG=41712 TEST=as per bug comment 8 http://crbug.com/41712#c8 Review URL: http://codereview.chromium.org/1679002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45295 0039d316-1c4b-4281-b951-d872f2087c98
* Remove app.gyp dependency on chrome.gyp.tony@chromium.org2010-04-225-6/+65
| | | | | | | | | | The problem is that app_unittests tries to use pak files generated by chrome.gyp. Instead, create new .pak files in app_unittest_strings and have app_unittests use those pak files instead. Review URL: http://codereview.chromium.org/1748004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45294 0039d316-1c4b-4281-b951-d872f2087c98
* A bunch more GLES2 conformance test fixes.gman@chromium.org2010-04-2211-114/+256
| | | | | | | | | | | | | | 1) All the glIsXXX functions were wrong 2) unlike buffers, renderbuffers, framebuffers, etc texture 0 is valid. 3) UseProgram accepts 0. 4) make glShaderSource fail if passed a NULL pointer (the spec doesn't say this afaict) TEST=conformance tests BUG=none Review URL: http://codereview.chromium.org/1750005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45293 0039d316-1c4b-4281-b951-d872f2087c98
* - Adding Chrome preferences for ibus-pinyin.yusukes@google.com2010-04-227-37/+185
| | | | | | | | | | | | | - Moving all input method related constants from preferences.cc to language_preferences.h. This change is necessary to implement a configuration dialog for Pinyin input method. BUG=crosbug.com/488 TEST=ran browser_tests Review URL: http://codereview.chromium.org/1631030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45292 0039d316-1c4b-4281-b951-d872f2087c98
* ffmpeg roll for ffmpeg_patch_13_r22931_vp3_more_huffman_bitsfbarchard@chromium.org2010-04-221-1/+1
| | | | | | | | | BUG=42197 TEST=http://people.xiph.org/~greg/11x.ogv Review URL: http://codereview.chromium.org/1742005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45291 0039d316-1c4b-4281-b951-d872f2087c98
* Roll gyp to r814.mmoss@google.com2010-04-221-1/+1
| | | | | | Review URL: http://codereview.chromium.org/1704004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45288 0039d316-1c4b-4281-b951-d872f2087c98
* Removed dependency on AuthWatcher in the TalkMediator class. So now the ↵sanjeevr@google.com2010-04-225-55/+6
| | | | | | | | | | | TalkMediator::Login method has to be explicitly called. BUG=None TEST=Test Bookmarks Sync notifications. Review URL: http://codereview.chromium.org/1737002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45286 0039d316-1c4b-4281-b951-d872f2087c98
* Bookmark Hover: Introduced an over-delete with attempt at timer safety.dhollowa@chromium.org2010-04-222-7/+0
| | | | | | | | | | | Removing redundant timer supspension. This was causing an over delete when dragging to parent folder. BUG=40006 TEST=BookmarkBarFolderControllerTest.HoverState Review URL: http://codereview.chromium.org/1766003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45279 0039d316-1c4b-4281-b951-d872f2087c98
* Changed the semantics of many fields throughout the o3d-webglkbr@google.com2010-04-2224-672/+782
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implementation to be backed by Params using o3d.ParamObject.setUpO3DParam_. This change was needed to maintain the semantics of the plugin, where fetching a parameter of a certain name and setting it is equivalent to setting the field against the object. This change mandated moving all of the assignments of the form "constructor.prototype.fieldName = defaultValue" into the constructor function itself, so that the setter created by setUpO3DParam will be properly called for those assignments. For all files touched by this CL, moved all default field assignments, not just those associated with Param-backed fields. Incorporated petersont's setup of the dx_clipping uniform introduced in amarinichev's cg_to_glsl converter. Commented out bogus modification of projection matrix in o3d.Param.SAS.setProjection and added TODO to modify all handwritten shaders. Fixed bug in o3d.Buffer.prototype.resize where it needed to coerce the argument to an integer, a bug in the type determination for arrays in param.js, and a couple of other bugs. Changed cg_to_glsl script to use the expected case for the SAS matrices in the o3d-webgl backend. Hopefully this change will not break the GLES2 backend. Ran all o3d-webgl samples. All work except for shadow-map.html (affected by https://bugs.webkit.org/show_bug.cgi?id=37963 ) and helloworld.html, which now does not report any errors but also does not display any output yet. BUG=none TEST=ran o3d-webgl samples TBR=petersont,amarinichev Review URL: http://codereview.chromium.org/1751006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45278 0039d316-1c4b-4281-b951-d872f2087c98
* The HttpNegotiateTest.ReportProgress test fails on IE6 as we fail to ↵ananta@chromium.org2010-04-224-5/+45
| | | | | | | | | | retrieve the IBrowserService interface. Disabling this test for IE6 for now. Review URL: http://codereview.chromium.org/1731003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45277 0039d316-1c4b-4281-b951-d872f2087c98
* Disable DomSerializerTests.SerializeHTMLDOMWithEntitiesInAttributeValue for nowjamesr@chromium.org2010-04-221-1/+2
| | | | | | | | | | BUG=42281 TEST=none TBR=estade Review URL: http://codereview.chromium.org/1732005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45276 0039d316-1c4b-4281-b951-d872f2087c98
* Update WebKit to r58033jamesr@chromium.org2010-04-2266-401/+402
| | | | | | Review URL: http://codereview.chromium.org/1705004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45274 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 45263 - We check for a sync specific service URL (or an empty) one ↵jamesr@chromium.org2010-04-221-9/+5
| | | | | | | | | | | | | | before acting on a notification from TalkMediator. BUG=None TEST=Test Bookmarks Sync Notifications. Review URL: http://codereview.chromium.org/1700003 TBR=sanjeevr@google.com Review URL: http://codereview.chromium.org/1694009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45273 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 45257 - Delete and recreate the sync database if it is corrupt.jamesr@chromium.org2010-04-223-38/+4
| | | | | | | | | | | | BUG=40020 TEST=DirectoryBackingStoreTest.Corruption Review URL: http://codereview.chromium.org/1733008 TBR=albertb@chromium.org Review URL: http://codereview.chromium.org/1733009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45272 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Image references missing from Omnibox revert.shess@chromium.org2010-04-221-0/+2
| | | | | | | | | | | | | r43680 removed some images from chrome_dll.gypi, the revert at r45267 didn't catch them. BUG=none TEST=none TBR=pkasting@chromium.org Review URL: http://codereview.chromium.org/1723006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45271 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 45265 - Speed up vertical filtering using v = a+(ba)*x formulafbarchard@chromium.org2010-04-223-50/+39
| | | | | | | | | | | BUG=42064 TEST=unittests should still pass Review URL: http://codereview.chromium.org/1733004 TBR=jamesr@chromium.org Review URL: http://codereview.chromium.org/1718007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45270 0039d316-1c4b-4281-b951-d872f2087c98
* Make the output of notification testing in test shell match that of WebKit ↵johnnyg@chromium.org2010-04-221-3/+6
| | | | | | | | | | | DumpRenderTree in the event of empty fields, rather than printing (null). BUG=none TEST=none Review URL: http://codereview.chromium.org/1697006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45269 0039d316-1c4b-4281-b951-d872f2087c98
* GTK fix merge failure in uber-revert.shess@chromium.org2010-04-221-2/+1
| | | | | | | | | | | | | BookmarkBubbleGtk::Show()'s signature changed but was mis-merged in revert of r43146 (http://codereview.chromium.org/1491003). BUG=none TEST=waterfall TBR=pkasting@chromium.org Review URL: http://codereview.chromium.org/1695005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45268 0039d316-1c4b-4281-b951-d872f2087c98
* Temporarily revert certain Omnibox, toolbar, tab animations, and othershess@chromium.org2010-04-22250-12414/+9249
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | UI changes for purposes of testing and merging into mstone-5. Also ++kThemePackVersion and regenerate the cached theme pak. Reverted changes: r45213: GTK: Override cursor colors in chrome-theme mode. r45103: Support drawing nano tabs in the tabstrip. r45084: GTK: Position the EV certificate stuff inside a green bubble. r44979: Subclassing the InfoBubble to handle anchoring bubbles basedon... r44957: GTK: Tint the geolocation icons in gtk mode. r44943: Changes FormatURL to not strip http if the host starts with ft... r44930: Remove an icon that is no longer used. r44929: SSL UI changes, Windows, code side (images are separate). r44859: SSL UI changes (icons). TBRed since trybots hate binary patches. r44822: GTK: Select better greens in the native omnibox popup. r44814: GTK: navigate to URL on PRIMARY when middle-clicking the locat... r44789: [Mac] Bookmark star missing on NTP and BMM. r44775: [Mac] Centralize hack to make tests work with AutocompleteClas... r44678: Display the SECURITY_WARNING status in the location bar for the r44648: [Mac] Add an arrow cursor rect for the location image. r44615: Revert r44611 because it may have broken "unit_tests" on "Vist... r44611: Display the SECURITY_WARNING status in the location bar for the r44577: Revert 44572 - [Mac] Update locationbar icon as user types. r44572: [Mac] Update location-bar icon as user types. r44555: GTK: Use correct button mask on reload button. r44545: [Mac] Omnibox text drag drag URL when select-all. r44523: GTK: Prevent inappropriate drag of location bar location icon. r44519: GTK: make the primary selection include the url's scheme when ... r44492: [Mac] Fix search icon in keyword search to be right-side-up. r44415: GTK: Update top padding on icons in the autocomplete popup. r44401: GTK: Tint omnibox icons in GTK mode differently. r44380: GTK: Move reload in gtk mode and fix omnibox popup location. r44282: Fixes crash in autocomplete when typing some URLs. The problem r44273: [Mac] PDF icons for omnibox nits. r44269: Fix build break due to bad merge resolve r44268: Shift omnibox dropdown in and up on Windows, and square off th... r44178: GTK: fix TTS padding. r44177: Round the top left and right edges of the toolbar. r44171: Images only checkin for try server goodness. r44163: GTK: fix padding of autocomplete popup. r44152: [Mac] PDF icons for omnibox. r44145: GTK: Theme the icons in the location bar and use GTK colors fo... r44140: Strips http from the omnibox r44131: Fixes bugs in new tab strip animations where they weren't doin... r44116: Change the default theme colors. r44117: Add newline to EOF to fix CrOS builder. r44115: Make the bottom edges of the opaque frame rounded. r44091: [Mac] No star icon or page actions in omnibox on popups. r44087: Don't allow drag or click on location icon when editing in omn... r44021: [GTK] Add TTS lens graphic to linux TTS box. r44008: [Mac] Tweak location icon spacing in omnibox. r43977: GTK: don't show the star or page actions in ShouldOnlyShowLoca... r43972: Make the firstrun bubble point at a better spot now that the l... r43971: [Mac] Location icon in omnibox as drag source. r43970: Make the star and page action icons not appear on popup windows. r43954: Fixes bug in TabStrip where dragging tab out then back in rapidly r43864: Tweaks to BoundsAnimator/SlideAnimation and TabStrip: r43787: Allow location icon to be dragged & dropped. This also fixes ... r43759: Changes end cap of tab-to-search images. r43740: Change bookmark bar toggle to ctrl-shift-b. r43723: Show Page Info dialog on mouse up, not mouse down. r43677: Fix Mac build failure. r43676: Replace omnibox icons with new set that are all the same size ... r43596: Fix browser test TestStarButtonAccObj. r43593: Disables TestStarButtonAccObj. r43582: Changes tab strip to use BoundsAnimator for tab strip animatio... r43563: GTK: don't show reload button for popup/app windows. r43562: Star/reload shuffle, Windows version. r43540: [Mac] Magnifying glass in keyword-search bubble. r43482: Adds images needed for new tab animation. I'm separating this ... r43422: Add reload mask resource. r43392: GTK: make the location icon a drag source. r43376: [Mac] Move star button into page-actions area of omnibox. r43357: [Mac] Line up omnibox popup under field. r43290: gtk: fix display of icons in omnibox popup r43269: GTK: fix reload button. r43249: [Mac] Rearrange SSL status icon/label in omnibox. r43248: BrowserThemePack: Adds persistant ids for the reload endcaps. r43241: GTK: more location bar updates. r43191: Fix memory leak in BrowserThemePack. r43154: GTK: set the new star button's ID r43151: Fix bad conflict resolution for r43146. r43146: GTK: toolbar reload/star shuffle. r43025: Show the location bar icon (almost) all the time, and have its... r43023: Add new images for new reload button. No code change. r42782: Remove this icon, now that it's no longer used (due to my secu... r42502: Omnibox M5 work, part 1: Security changes r42245: Check in new icons for omnibox security changes alone, so that... BUG=none TEST=Eyjafjallajokull R=pkasting@chromium.org,beng@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45267 0039d316-1c4b-4281-b951-d872f2087c98
* Speed up vertical filtering using v = a+(b-a)*x formulafbarchard@chromium.org2010-04-213-39/+50
| | | | | | | | BUG=42064 TEST=unittests should still pass Review URL: http://codereview.chromium.org/1733004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45265 0039d316-1c4b-4281-b951-d872f2087c98
* AutoFill: Skip past empty strings when comparing form fields for filling.jhawkins@chromium.org2010-04-212-0/+87
| | | | | | | | | | | Empty WebString != Empty string16! BUG=none TEST=FormManagerTest.FillFormEmptyName Review URL: http://codereview.chromium.org/1750004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45264 0039d316-1c4b-4281-b951-d872f2087c98
* We check for a sync specific service URL (or an empty) one before acting on ↵sanjeevr@google.com2010-04-211-5/+9
| | | | | | | | | | | a notification from TalkMediator. BUG=None TEST=Test Bookmarks Sync Notifications. Review URL: http://codereview.chromium.org/1700003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45263 0039d316-1c4b-4281-b951-d872f2087c98
* Review URL: http://codereview.chromium.org/1736003amarinichev@chromium.org2010-04-2119-1098/+1624
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45262 0039d316-1c4b-4281-b951-d872f2087c98
* Make sure extensions work in single process mode.arv@chromium.org2010-04-211-1/+3
| | | | | | | | | BUG=42236 TEST=Start chrome with --single-process. Bookmark manager should still wok. Review URL: http://codereview.chromium.org/1704005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45261 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for user-defined source root directory.mmoss@google.com2010-04-211-1/+16
| | | | | | | | | | | This fixes a problem on the Linux Module builders where tests built as sub-projects (gyp r814) can't find the source root because they're more than 2 levels deep (http://build.chromium.org/buildbot/waterfall/builders/Modules%20Linux%20(dbg)/builds/24363/steps/base_unittests/logs/stdio). Review URL: http://codereview.chromium.org/1690004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45260 0039d316-1c4b-4281-b951-d872f2087c98
* Delete and recreate the sync database if it is corrupt.albertb@chromium.org2010-04-213-4/+38
| | | | | | | | | BUG=40020 TEST=DirectoryBackingStoreTest.Corruption Review URL: http://codereview.chromium.org/1733008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45257 0039d316-1c4b-4281-b951-d872f2087c98
* Add delete cookie option to Automation Proxyjmikhail@google.com2010-04-216-0/+41
| | | | | | | | BUG=none TEST=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45256 0039d316-1c4b-4281-b951-d872f2087c98
* Put Autofill after Themes on Windows and Linux too, to match Mac, in the ↵dantasse@chromium.org2010-04-213-43/+44
| | | | | | | | | | | Customize Sync dialog. (this is because we're shipping Themes first) BUG=41833 TEST=visual inspection: bring up the Customize Sync dialog. The Themes checkbox should be before the Autofill one. Review URL: http://codereview.chromium.org/1715002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45255 0039d316-1c4b-4281-b951-d872f2087c98
* Fixing bug attribution in suppression file.dhollowa@chromium.org2010-04-211-2/+2
| | | | | | | | | | | Duplicate found in tools/heapcheck/suppressions.txt. BUG=42153 TEST=valgrind Review URL: http://codereview.chromium.org/1729005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45254 0039d316-1c4b-4281-b951-d872f2087c98
* Update WebKit to r58013jamesr@chromium.org2010-04-211-1/+1
| | | | | | | | | | TEST=canaries BUG=hopefully not! TBR=yuzo Review URL: http://codereview.chromium.org/1762002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45253 0039d316-1c4b-4281-b951-d872f2087c98
* Add EnableDoubleBuffer to WidgetGtkoshima@chromium.org2010-04-213-10/+35
| | | | | | | | | | | | | This will be used to eliminate flicker issue in notification panel (and probably in settings when settings is moved to views). NativeViewHostGtk was creating Fixed with gdk window everytime it is repositioned with clipping. This was causing a lot of creation/deletion of fixed when moving a native control in scroll bar. BUG=23445 TEST=none Review URL: http://codereview.chromium.org/1725005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45252 0039d316-1c4b-4281-b951-d872f2087c98
* [chromium os] Add a bit more gmail-specific email address canonicalizationcmasone@google.com2010-04-213-1/+17
| | | | | | | | When canonicalizing email addresses for login on chromium OS, we want to make sure that we're using a user's canonical gmail addres, so we ignore interstitial '.' characters already. This adds ignoring +-suffixes, ensuring that cmasone@gmail.com == cmasone+cc@gmail.com Review URL: http://codereview.chromium.org/1765001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45251 0039d316-1c4b-4281-b951-d872f2087c98
* Bookmark Manager: Fix issue where we the user could drop text on the bmm.arv@chromium.org2010-04-211-22/+15
| | | | | | | | | | | | The problem was that we were not clearing the |dragData| so if it ever got set by doing drag and drop, further drag and drop of non bookarks used the old drag data so the UI code thought you were able to drop the old dragged bookmarks. BUG=42241 TEST=Do some drag and dropping in the bmm. Then start to rename a folder in the tree. Now drag the selected text in the text input. You should not be able to drop this text in the tree nor on the list but you should be able to drop the text on the search text input. Review URL: http://codereview.chromium.org/1733007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45250 0039d316-1c4b-4281-b951-d872f2087c98
* SPDY: Don't embed a NUL in SetNextProtos(). This makes NPN work again.willchan@chromium.org2010-04-211-1/+1
| | | | | | Review URL: http://codereview.chromium.org/1762003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45249 0039d316-1c4b-4281-b951-d872f2087c98
* Part 2 of making options dialog white on ChromeOSxiyuan@chromium.org2010-04-211-1/+16
| | | | | | | | | BUG=<http://crosbug.com/1885> TEST=Verify ChromeOS options dialog background if white as in mock http://www.chromium.org/chromium-os/user-experience/settings Review URL: http://codereview.chromium.org/1725004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45248 0039d316-1c4b-4281-b951-d872f2087c98
* Remove deprecated version of GetCurrentDirectory.evan@chromium.org2010-04-212-8/+0
| | | | | | | | BUG=24672 Review URL: http://codereview.chromium.org/1751005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45247 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the wstring versions of GetFileInfo, GetFileSize, GetTempDir.evan@chromium.org2010-04-214-24/+7
| | | | | | | | | TEST=compiles BUG=24672 Review URL: http://codereview.chromium.org/1753004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45246 0039d316-1c4b-4281-b951-d872f2087c98
* GTK: Use GtkWindows instead of GtkFixed when rendering icons.erg@chromium.org2010-04-211-2/+2
| | | | | | | | | | | | | There is some weird interaction with the gtk-qt-engine. If we don't use a GtkWindow to render the icons, we will render the GNOME default folder icon instead of the folder icon of the current KDE theme. BUG=37494 TEST=none Review URL: http://codereview.chromium.org/1687006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45245 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 45240 - Moved GLContext class to gfx/gl.apatrick@chromium.org2010-04-2120-124/+112
| | | | | | | | | | | | | | Now it can be used by code outside of the gpu project, for example AcceleratedSurface. TEST=trybots BUG=none Review URL: http://codereview.chromium.org/1694003 TBR=jamesr@chromium.org Review URL: http://codereview.chromium.org/1747007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45244 0039d316-1c4b-4281-b951-d872f2087c98
* Update pathjabdelmalek@google.com2010-04-211-4/+6
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45243 0039d316-1c4b-4281-b951-d872f2087c98
* bsd: move POSIXy functions back into file_util_posixevan@chromium.org2010-04-213-79/+62
| | | | | | | | | This is so the other non-Mac platforms don't need to build file_util_linux. Review URL: http://codereview.chromium.org/1732003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45242 0039d316-1c4b-4281-b951-d872f2087c98