summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Partially implement the new pepper API in Chrome. This is not actually hookedbrettw@chromium.org2010-05-0724-0/+1845
| | | | | | | | | | up, which will require some changes in render_view as well as the plugin list. TEST=none BUG=none Review URL: http://codereview.chromium.org/1697008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46760 0039d316-1c4b-4281-b951-d872f2087c98
* Move cr.Event into cr.js since that file should not depend on any other files.arv@chromium.org2010-05-077-54/+30
| | | | | | | | | BUG=None TEST=Manually ran the js tests Review URL: http://codereview.chromium.org/2014005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46759 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the standalone webkit build.darin@chromium.org2010-05-071-2/+6
| | | | | | | | | | | | | | | Ideally this dependency on chrome from net should not exist, but until that is resolved, we can at least avoid the dependency when using net.gyp from the standalone webkit build (which lacks a checkout of chrome/). R=nick BUG=none TEST=none Review URL: http://codereview.chromium.org/1996010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46758 0039d316-1c4b-4281-b951-d872f2087c98
* Fix IO thread hang on releasing a socket.willchan@chromium.org2010-05-074-26/+104
| | | | | | | | | | The problem was we assumed ProcessPendingRequest() would always make progress once the group's releasing socket went down to zero. However, in OnAvailableSocketSlot(), since the top stalled group might still have a releasing socket, it won't necessarily make progress. The algorithmic solution is to simply never do any socket slot processing in DoReleaseSocket() if there are any releasing sockets. This requires us to search for any stalled groups after releasing sockets gets back down to 0, so it requires the full group scan each time num_releasing_sockets goes back to 0. There is a performance hit here, but I think a linear search through 256~ groups in the worst case is ok. TODO(willchan): evaluate the perf hit and consider adding a secondary data structure to improve the stalled group search. BUG=42267 Review URL: http://codereview.chromium.org/2013009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46757 0039d316-1c4b-4281-b951-d872f2087c98
* This CL adds the option to support buffers that are boundgman@chromium.org2010-05-0722-176/+403
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to more than one target. We had originally decided that this would be an disallowed. glBindBuffer(GL_ARRAY_BUFFER, some_buffer_id); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, some_buffer_id); Unfortunately the GLES2 conformance tests require this behavior. This CL makes this behavior possible but it has to be turned on because it means all buffers have to have CPU side backing (not just ELEMENT_ARRAY_BUFFERs) and it means a slowdown for dynamic vertex related stuff like skinning because an extra copy has to be made every time they are updated. So, by default it will be off but we'll come up with some way to turn it on. Al's suggestion is to use eglCreateContext with a custom intialization attribute. My #1 question: What about the name of the command, the name of the constant and the filename the constant is in. Any thoughts? TEST=none BUG=none Review URL: http://codereview.chromium.org/1992008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46756 0039d316-1c4b-4281-b951-d872f2087c98
* Add UpdateAndShowNotification API to BallonCollectionImloshima@chromium.org2010-05-076-39/+80
| | | | | | | | | | | | | | | | | I was going to do Show(std::stringi d), but it'd require some refactoring on notification framework, so I decided to have UPdateAndShow first. I'll do refactoring once I finish screen lock and will update the code accordingly. other minor changes: * removed is_visible() as it's unnecessary. * cleanup browsertests code. BUG=http://crosbug.com/2692 TEST=added test cases to existing browser tests. Review URL: http://codereview.chromium.org/1933008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46755 0039d316-1c4b-4281-b951-d872f2087c98
* Add additional logging to try and find ExtensionApiTest.Storage flakiness.kkania@chromium.org2010-05-072-4/+16
| | | | | | | | | BUG=42943 TEST=none Review URL: http://codereview.chromium.org/2008003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46754 0039d316-1c4b-4281-b951-d872f2087c98
* Remove a few stray bits of win2k support.pkasting@chromium.org2010-05-077-30/+16
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/1998012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46753 0039d316-1c4b-4281-b951-d872f2087c98
* Pass HttpRequestHeaders to URLRequest::SetExtraRequestHeaders().willchan@chromium.org2010-05-079-60/+76
| | | | | | | | BUG=22588 Review URL: http://codereview.chromium.org/1998008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46752 0039d316-1c4b-4281-b951-d872f2087c98
* This CL fixes issue 42867 - "OK" button disabled on "Edit Exception" dialog boxxji@chromium.org2010-05-073-4/+34
| | | | | | | | | | | | | | | | | | | | when URL is modified in non-empty input field - RTL In RTL chrome in windows, the text get from "Pattern" text field is wrapped with LRE/POP, which makes the pattern invalid. Trim explicit bidi control characters off in NativeTextfieldWin::GetText(). BUG=http://crbug.com/42867 TEST= 1. Launch Chrome with RTL language UI 2. click Wrench => Options => Under the Hood => Content settings => Exceptions => Edit... 3. modify an existing url on the Pattern field. The "OK" button should not be grayed out. Review URL: http://codereview.chromium.org/1703026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46751 0039d316-1c4b-4281-b951-d872f2087c98
* NTP: Update theme colorsarv@chromium.org2010-05-072-16/+12
| | | | | | | | | | | | Set the color of the text for the app icons. Since we do not have a background on sections any more BUG=43578 TEST=None Review URL: http://codereview.chromium.org/2016007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46749 0039d316-1c4b-4281-b951-d872f2087c98
* Add the requests dumps to the text summary on chrome://net2#dataeroman@chromium.org2010-05-076-41/+233
| | | | | | | BUG=37421 Review URL: http://codereview.chromium.org/1994006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46748 0039d316-1c4b-4281-b951-d872f2087c98
* Re-land the protocol extension for syncing passwords patch.albertb@chromium.org2010-05-078-0/+92
| | | | | | | | | BUG=34176 TEST=none Review URL: http://codereview.chromium.org/2024006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46747 0039d316-1c4b-4281-b951-d872f2087c98
* Put CustomizeSyncWindowGtk in NativeDialogHost for ChromeOS.xiyuan@chromium.org2010-05-071-3/+3
| | | | | | | | | BUG=none TEST=Verify that "Customize" button on "Personal Stuff" options page brings you the dialog with a Chrome window frame and not occupy the full screen. Review URL: http://codereview.chromium.org/2043005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46746 0039d316-1c4b-4281-b951-d872f2087c98
* Http Cache: Handle the asynchronous instantiation of thervargas@google.com2010-05-075-191/+624
| | | | | | | | | | | | | backend. We queue all trasnactions that reach Start before we are done creating the disk cache. BUG=26729 TEST=unittests. Review URL: http://codereview.chromium.org/2002002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46745 0039d316-1c4b-4281-b951-d872f2087c98
* Refactor menu window height, position, and presence of scrolling arrows code ↵mrossetti@chromium.org2010-05-074-150/+266
| | | | | | | | | | out of configureWindow and into a new adjustWindowForHeight: method. Call this method when adding or removing bookmark nodes to the menu, such as for dropping or pasting. When adjusting the button widths consider the best cell width, which may be less than the current button width, so that folder menus can shrink as well as grow. When adding the first bookmark to an empty folder remove the '(empty)' placeholder and when removing the last real bookmark from a folder insert the '(empty)' placeholder. BUG=42868,43227 TEST=In addition to attempting to recreate the problems as described in the bug reports: 1) Add (by dragging in or pasting) a new bookmark to a folder which is on the edge of being too big and needing to scroll and verify that it does become scrollable, 2) remove a bookmark (by cutting or deleting) from the folder which just became scrollable and verify that it is no longer scrollable, 3) create a new, empty folder and verify that it shows '(empty)' , 4) add a bookmark (by dragging or pasting) to the newly created empty folder and verify that there is only one bookmark shown and that it is not the '(empty)' placeholder, and 5) remove the single bookmark just added to the folder (by cutting or deleting) and verify that the menu now shows the '(empty)' placeholder. Review URL: http://codereview.chromium.org/2024004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46744 0039d316-1c4b-4281-b951-d872f2087c98
* Revert StatsTableTest.MultipleThreads change which is failing tsan.shess@chromium.org2010-05-071-2/+4
| | | | | | | | | | | | | | | | Revert r46707: Mark StatsTableTest.MultipleThreads as flaky instead of using #if 0. TBR=maruel,phajdan.jr TEST=none BUG=10611 Review URL: http://codereview.chromium.org/2054003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46743 0039d316-1c4b-4281-b951-d872f2087c98
* Another attempt to reduce the number of false positive crashes reported in ↵ananta@chromium.org2010-05-072-8/+17
| | | | | | | | | | | | | | | | | | ChromeFrame. There appear to be a number of crashes caused when we wrap the bind status callback and call the underlying IMoniker::BindToStorage function. The crashes occur because of urlmon calling into dlls which have been unloaded. Fix is to use the exception barrier version which only reports crashes which occur directly in chrome frame in our BindtoStorage call and to use the generic ExceptionBarrier in our bind status callback wrapper before calling out to the underlying callback. Fixes bug http://code.google.com/p/chromium/issues/detail?id=43373 Bug=43373 Review URL: http://codereview.chromium.org/2002009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46742 0039d316-1c4b-4281-b951-d872f2087c98
* Add parameters to CreateWidget Pepper API so we can specify whether a ↵jam@chromium.org2010-05-074-9/+18
| | | | | | | | scrollbar is vertical or not. Review URL: http://codereview.chromium.org/1996009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46741 0039d316-1c4b-4281-b951-d872f2087c98
* Add suppressions for syncable valgrind issues.tommi@chromium.org2010-05-071-1/+31
| | | | | | | | BUG=43613 Review URL: http://codereview.chromium.org/2012005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46740 0039d316-1c4b-4281-b951-d872f2087c98
* Moved URLFetcher and related classes to chrome/common/net.sanjeevr@chromium.org2010-05-0791-113/+114
| | | | | | | | BUG=None TEST=Build and Unittests Review URL: http://codereview.chromium.org/1995008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46739 0039d316-1c4b-4281-b951-d872f2087c98
* Change to a simpler upgrade scheme for Chrome Frame whereby we register a ↵robertshield@chromium.org2010-05-075-405/+90
| | | | | | | | | | | window class in DllMain on attach and tag it with our module handle, then unregister said window class on detach. BUG=43343 Review URL: http://codereview.chromium.org/1994007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46738 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 46735 - Fix Chrome OS preinitialsync options messaging.nick@chromium.org2010-05-072-4/+1
| | | | | | | | | | | | | | When you first logged in to Chrome OS, it used to say "your account is not set up to sync" until you downloaded the initial sync. Now it follows the regular sync signup flow where it's "account details are not yet entered" until the authentication happens, then it's "setup in progress" while downloading the initial download, then it's "your account is set up to sync." BUG=maybe in chrome OS tracker? TEST=build chrome OS. log in to chrome OS with a new account. Immediately check wrench>options>personal stuff. It should not say "your account is not set up to sync..." Review URL: http://codereview.chromium.org/2023004 TBR=dantasse@chromium.org Review URL: http://codereview.chromium.org/2049002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46737 0039d316-1c4b-4281-b951-d872f2087c98
* Committing for jeffbailey.mad@google.com2010-05-076-93/+231
| | | | | | | | | | | | | | | | | Excerpt from: http://codereview.chromium.org/1991004/show ---------------- Put version information into header file for easy consumption by RC files. RC files can use an #include to pull in this header, rather than being each dynamically generated. BUG=none TEST=none ---------------- Review URL: http://codereview.chromium.org/2020003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46736 0039d316-1c4b-4281-b951-d872f2087c98
* Fix Chrome OS pre-initial-sync options messaging.dantasse@chromium.org2010-05-072-1/+4
| | | | | | | | | | | When you first logged in to Chrome OS, it used to say "your account is not set up to sync" until you downloaded the initial sync. Now it follows the regular sync signup flow where it's "account details are not yet entered" until the authentication happens, then it's "setup in progress" while downloading the initial download, then it's "your account is set up to sync." BUG=maybe in chrome OS tracker? TEST=build chrome OS. log in to chrome OS with a new account. Immediately check wrench->options->personal stuff. It should not say "your account is not set up to sync..." Review URL: http://codereview.chromium.org/2023004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46735 0039d316-1c4b-4281-b951-d872f2087c98
* Divert TRACE_EVENT macros to use Event Tracing for Windows on Windows builds.siggi@chromium.org2010-05-076-3/+551
| | | | | | | | | | | This is in preparation for instrumenting Chrome and Chrome Frame for performance measurements with ETW. BUG=none TEST=Unittests in this CL. Review URL: http://codereview.chromium.org/2020002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46734 0039d316-1c4b-4281-b951-d872f2087c98
* One more to remove!darin@chromium.org2010-05-071-3/+2
| | | | | | | | | | TBR=jhawkins BUG=none TEST=none Review URL: http://codereview.chromium.org/1979005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46733 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the obsolete JRI bits from the NPAPI headersstuartmorgan@chromium.org2010-05-073-20/+2
| | | | | | | | | BUG=42645 TEST=Existing plugin tests continue to pass; nothing should change. Review URL: http://codereview.chromium.org/2011005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46732 0039d316-1c4b-4281-b951-d872f2087c98
* gtk: Fix gtk_dnd_util::ExtractNamedURL to not crash on invalid data.thestig@chromium.org2010-05-073-4/+89
| | | | | | | | BUG=43347 TEST=included Review URL: http://codereview.chromium.org/2003006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46731 0039d316-1c4b-4281-b951-d872f2087c98
* gtk: Fix bookmark_utils::GetNodesFromSelection to not crash on invalid data.thestig@chromium.org2010-05-073-45/+83
| | | | | | | | BUG=43347 TEST=included Review URL: http://codereview.chromium.org/2048002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46730 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Fix omnibox popup for scaling.shess@chromium.org2010-05-072-52/+72
| | | | | | | | | | | | | | | | | Make it so that the code carefully shuffled rects, points, and sizes through the right conversions as it moves from view coordinates to screen coordinates (to position the popup). This only really comes up when you're debuggin whether your pretty scalable PDF graphics really work by using Quartz Debug to set the scale factor to 3 or something. BUG=40999 TEST=See bug Review URL: http://codereview.chromium.org/2028004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46729 0039d316-1c4b-4281-b951-d872f2087c98
* ffmpeg audio convert float to int samples immediately after decodefbarchard@chromium.org2010-05-071-0/+62
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/1969004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46728 0039d316-1c4b-4281-b951-d872f2087c98
* Reduce inter-upload interval for UMA logs to 30 minutesjar@chromium.org2010-05-071-2/+2
| | | | | | | | | Reduce the rate at which we upload UMA stats. r=laforge Review URL: http://codereview.chromium.org/1999003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46727 0039d316-1c4b-4281-b951-d872f2087c98
* Add DCHECK to detect misuse of HISTOGRAM interface.jar@chromium.org2010-05-072-8/+26
| | | | | | | | | | | | | | | The interface (for perf reasons) snapshots the histogram name, and reuses it in future calls. As a result, any attempt to modulate (change) the name between call is ignored. This change uses a DCHECK to detect such abuse. BUG=43377 BUG=43375 r=vandebo Review URL: http://codereview.chromium.org/2019001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46726 0039d316-1c4b-4281-b951-d872f2087c98
* Windows: Make file_util::Delete("c:\\foo_dir", false) work correctly. Add ↵thestig@chromium.org2010-05-079-29/+150
| | | | | | | | | | more unit tests for Delete. BUG=42374 TEST=included Review URL: http://codereview.chromium.org/1763008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46725 0039d316-1c4b-4281-b951-d872f2087c98
* Don't try and adjust the oom_adj of renderers on SELinux systems.agl@chromium.org2010-05-071-3/+36
| | | | | | | | | | | | | https://bugzilla.redhat.com/show_bug.cgi?id=581256 The SELinux policy doesn't let chrome_sandbox touch other processes' oom_adj and we're spamming the log. (See comments in the patch for details) http://codereview.chromium.org/2005006/show git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46724 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Protocol extension for syncing passwords."albertb@chromium.org2010-05-077-144/+0
| | | | | | | | | | This reverts commit 4ab711db8ace2106fea6a95e12d2da6fbe4f78f7. TBR=tommi Review URL: http://codereview.chromium.org/2014004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46723 0039d316-1c4b-4281-b951-d872f2087c98
* Allow stand-alone extension views (e.g. browser action pop-ups) to reload joi@chromium.org2010-05-072-14/+20
| | | | | | | | | | | | themselves, navigate to other pages in the same extension, persist their state using # after the URL, etc. TEST=write an extension that reloads its page action pop-up (e.g. on a button click), see that before this change it does not work, after it does BUG=none Review URL: http://codereview.chromium.org/1947002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46721 0039d316-1c4b-4281-b951-d872f2087c98
* Protocol extension for syncing passwords.albertb@chromium.org2010-05-077-0/+144
| | | | | | | | | BUG=34176 TEST=none Review URL: http://codereview.chromium.org/1794009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46720 0039d316-1c4b-4281-b951-d872f2087c98
* TTF: Re-enable coverage of ExpireHistoryTest.DeleteURLAndFavicon by marking itjhawkins@chromium.org2010-05-072-3/+3
| | | | | | | | | | | flaky instead of disabled. Add the corresponding bug to the comment. BUG=43586 TEST=none Review URL: http://codereview.chromium.org/1979004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46719 0039d316-1c4b-4281-b951-d872f2087c98
* Switch over to non-deprecated methods.darin@chromium.org2010-05-074-30/+22
| | | | | | | | | | R=jhawkins BUG=none TEST=none Review URL: http://codereview.chromium.org/1985008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46718 0039d316-1c4b-4281-b951-d872f2087c98
* Use a reasonable default pthread stack size on Mac OS X.mark@chromium.org2010-05-071-0/+33
| | | | | | | | | | | | | Mac OS X uses a fixed default stack size of 512kB, which is too small for some purposes. glibc on Linux uses ulimit -s, which is both a more reasonable thing to do, and is generally set to a rational limit, such as 8MB. BUG=43422 TEST=None really on the trunk. On the Mac 375 branch, using the .pac file on the bug, Chrome should not crash on startup. Review URL: http://codereview.chromium.org/2035007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46717 0039d316-1c4b-4281-b951-d872f2087c98
* Cache progress notifications only if necessaryamit@chromium.org2010-05-072-8/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | We cache and suppress sending progress notifications till we get the first OnDataAvailable. This is to prevent mshtml from making up its mind about the mime type. However, this is the invasive part of the patch and could trip other software that's due to mistimed progress notifications. It is probably not good to hide redirect and some cookie notifications. We only need to suppress data notifications like BINDSTATUS_MIMETYPEAVAILABLE, BINDSTATUS_CACHEFILENAMEAVAILABLE etc. This is an atempt to reduce the exposure by starting to cache only when we receive one of the interesting progress notification. BUG=42611 TEST=none Review URL: http://codereview.chromium.org/2046003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46715 0039d316-1c4b-4281-b951-d872f2087c98
* fix linux build error second tryjam@chromium.org2010-05-071-2/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46714 0039d316-1c4b-4281-b951-d872f2087c98
* fix linux build errorjam@chromium.org2010-05-071-2/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46713 0039d316-1c4b-4281-b951-d872f2087c98
* sync: only add to the dirty_metahandles index when marking an item dirty, ↵tim@chromium.org2010-05-074-45/+73
| | | | | | | | | | | | | | | | | | | | rather than for every item in a WriteTransaction originals array, and make sure to restore items into dirty_metahandles on save changes failure to avoid data loss. This prevents a situation where after a SaveChanges, a "clean" (not dirty) item will pass the SafeToPurgeFromMemory filter because is_dirty is false, but it is in fact still in dirty_metahandles, and we yank it from metahandles_index. This causes a crash later on as GetByHandle will return NULL for items in this boat. The other part of this fix makes sure we don't lose a bookmark change on browser restart due to a single sqlite operation failing during SaveChanges by restoring items into the dirty index. BUG=43047,40341 Review URL: http://codereview.chromium.org/2043002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46712 0039d316-1c4b-4281-b951-d872f2087c98
* Added sync_tools.gyp to all.gyp.akalin@chromium.org2010-05-072-1/+12
| | | | | | | | | BUG=none TEST=trybots Review URL: http://codereview.chromium.org/1735018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46711 0039d316-1c4b-4281-b951-d872f2087c98
* Add new widget API to Pepper to replace the old theming API. The ↵jam@chromium.org2010-05-0717-433/+1779
| | | | | | | | implementation is a copy of the WebKit code, I will figure out how to reuse it soon. Review URL: http://codereview.chromium.org/2011004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46710 0039d316-1c4b-4281-b951-d872f2087c98
* Mark StatsTableTest.MultipleThreads as flakyphajdan.jr@chromium.org2010-05-071-4/+2
| | | | | | | | | | | | | instead of using #if 0. TBR=maruel TEST=none BUG=10611 Review URL: http://codereview.chromium.org/1990007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46707 0039d316-1c4b-4281-b951-d872f2087c98
* Webkit roll 58942:58956.vitalyr@chromium.org2010-05-071-1/+1
| | | | | | | | | | BUG=none TEST=none TBR=johnnyg Review URL: http://codereview.chromium.org/2040004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46706 0039d316-1c4b-4281-b951-d872f2087c98