summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Reland r54074.dtseng@chromium.org2010-07-3011-11/+233
| | | | | | Review URL: http://codereview.chromium.org/3010040 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54334 0039d316-1c4b-4281-b951-d872f2087c98
* Initialize SpdyStreamMember to kInitialWindowSize.finnur@chromium.org2010-07-301-1/+1
| | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/3081004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54333 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a bug with detecting window sizes that match the monitor size.tony@chromium.org2010-07-301-11/+17
| | | | | | | | | | | | | | | | | | The previous code was comparing the window size to the screen size, but that doesn't work properly for twinview or other cases where there are multiple monitors that make up a single screen. Instead, compare the window size against all monitors (since we don't know which monitor the window is going to be placed on) and resize if it matches any monitor size. Also fix a bug in BoundsMatchMonitorSize where we should just be comparing sizes, not rectangle positions. BUG=32347 Review URL: http://codereview.chromium.org/3060032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54332 0039d316-1c4b-4281-b951-d872f2087c98
* When running as a remote, call gdk_notify_startup_completedavidben@chromium.org2010-07-301-0/+4
| | | | | | | | | | | | | | | | | | | | | Linux programs are expected to notify their launcher when they finish loading. GTK+ does this automatically when the first GtkWindow is opened. When acting as a remote, no window is opened, so we should manually send the notification. This could perhaps be more thorough and pass DESKTOP_LAUNCH_ID to the remote to call with gdk_notify_startup_complete_with_id, but a quick survey on codesearch suggests that no one bothers anyway. (This is reproducible in KDE. The bug report suggests some configurations of GNOME need this as well, but not yet reproducible.) R=estade BUG=45392 TEST=throbber disappears on second Chrome launch in KDE Review URL: http://codereview.chromium.org/3051023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54331 0039d316-1c4b-4281-b951-d872f2087c98
* Uninitialized member in SpdyStream.finnur@chromium.org2010-07-301-1/+2
| | | | | | | | | | | BUG=None TEST=None CID=11904 Review URL: http://codereview.chromium.org/3083006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54330 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit from 64352 to 64357.jorlow@chromium.org2010-07-301-1/+1
| | | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/3041032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54329 0039d316-1c4b-4281-b951-d872f2087c98
* Add the new notification balloon wrench icon. Part of last change but ↵johnnyg@chromium.org2010-07-302-0/+1
| | | | | | | | | | | | separated for try bot purposes. BUG=49190 TEST=none TBR=thakis Review URL: http://codereview.chromium.org/2806094 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54328 0039d316-1c4b-4281-b951-d872f2087c98
* Give a better error when extension unpacking can't be done.skerner@chromium.org2010-07-302-19/+33
| | | | | | | | | | | The sandbox can not allow file access to paths that contain reparse points. Chrome tries to find a reparse point free path to the directory which will be sandboxed for extension unpacking. However, there are cases where there is no such path. See the bug for an example. In this case, give a decent error message. BUG=49530 TEST=Manually created a partition mounted in C:/mnt, mounted as drive letter, and mounted only under /Devices/HardDisk3/, tried unpacking extensions in each. Review URL: http://codereview.chromium.org/3060026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54327 0039d316-1c4b-4281-b951-d872f2087c98
* Change mac notifications UI to match the new mocks. Introduce a new utility ↵johnnyg@chromium.org2010-07-3014-196/+401
| | | | | | | | | | | | | | | | | view which provides an image based button that changes on hover and press. Refer to the bug for screenshots of the current and desired UI. Screenshot of what results from this patch is visible at http://www.corp.google.com/~johnnyg/49490patch.png XIB change: change height of title bar, change bindings of buttons. BUG=49190 TEST=notifications on the mac Review URL: http://codereview.chromium.org/3014004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54326 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Make popup-blocked animation animate to content-setting icon.shess@chromium.org2010-07-303-3/+43
| | | | | | | | | BUG=none TEST=www.popuptest.com, click a page to cause popups. Animation should go to where the blocked-popup content-setting decoration is in the omnibox. Review URL: http://codereview.chromium.org/3014029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54325 0039d316-1c4b-4281-b951-d872f2087c98
* Add unittest for ".." in a DNS name and add comment.agl@chromium.org2010-07-302-1/+4
| | | | | | (This is a follow up to r53782.) git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54324 0039d316-1c4b-4281-b951-d872f2087c98
* Remove some debug switches:skerner@chromium.org2010-07-3011-121/+10
| | | | | | | | | | | | | | --issue35198-crxdir-browser --issue35198-permission They were used to understand issue 35198. They are no longer needed. There is one more switch, --issue35198-logging, that is not being removed in this CL. The logging it adds may still be useful. BUG=50604 TEST=manual Review URL: http://codereview.chromium.org/3052023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54323 0039d316-1c4b-4281-b951-d872f2087c98
* Widening suppression for DownloadsDOMHandler::ModelChangedEvcbentzel@chromium.org2010-07-301-3/+1
| | | | | | | | | BUG=50745 TEST=None Review URL: http://codereview.chromium.org/3051027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54322 0039d316-1c4b-4281-b951-d872f2087c98
* Shuffle some of the functions in file_util.h.agl@chromium.org2010-07-301-13/+10
| | | | | | (A followup from r54316.) git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54321 0039d316-1c4b-4281-b951-d872f2087c98
* [Mac] Reposition the status bubble whenever adding it to a window.rohitrao@chromium.org2010-07-302-1/+23
| | | | | | | | BUG=50599 TEST=Open a window and let its webpage load. Move the window left or right, without allowing the mouse to pass over the web area. Then type in a new url and load it, again without letting the mouse pass over the web area. Status bubble should appear in the proper place. Review URL: http://codereview.chromium.org/3041028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54320 0039d316-1c4b-4281-b951-d872f2087c98
* Added suppression for http://crbug.com/50745cbentzel@chromium.org2010-07-301-0/+8
| | | | | | | | | BUG=50745 TEST=None Review URL: http://codereview.chromium.org/3029043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54319 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit from 64344 to 64352.jorlow@chromium.org2010-07-301-1/+1
| | | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/3047028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54318 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 54313 - OEM EULA extracted correctly from manifest.rsesek@chromium.org2010-07-304-124/+31
| | | | | | | | | | | | | | Fixing CustomizationDocument to return full path to the pages being queried. BUG=chromium:3178 TEST=none Review URL: http://codereview.chromium.org/2878051 TBR=glotov@chromium.org Review URL: http://codereview.chromium.org/3051026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54317 0039d316-1c4b-4281-b951-d872f2087c98
* Fix some bad uses of GetTempDir.agl@chromium.org2010-07-303-9/+10
| | | | | | | | | | | (Just a first step. I can't remove GetTempDir yet though.) BUG=none TEST=unit tests http://codereview.chromium.org/3075008/show git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54316 0039d316-1c4b-4281-b951-d872f2087c98
* Deflake KeygenHandlerTest.FLAKY_SmokeTestagl@chromium.org2010-07-301-5/+5
| | | | | | | | | | | | | | | Key generation is a process which inheriently has a long tail. 2048-bit keys are probably too large to generate on the bots if we expect them to complete in a reasonable amount of time. Thus we dial down the modulus size and remove the FLAKEY tag. BUG=none TEST=none http://codereview.chromium.org/2808081/show git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54314 0039d316-1c4b-4281-b951-d872f2087c98
* OEM EULA extracted correctly from manifest.glotov@chromium.org2010-07-304-31/+124
| | | | | | | | | | | Fixing CustomizationDocument to return full path to the pages being queried. BUG=chromium:3178 TEST=none Review URL: http://codereview.chromium.org/2878051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54313 0039d316-1c4b-4281-b951-d872f2087c98
* Work around multiple bugs in the WrenchMenuControllerTest using a bit of ↵rsesek@chromium.org2010-07-303-11/+43
| | | | | | | | | | | hackery. BUG=49206 TEST=Unit tests pass regularly. Review URL: http://codereview.chromium.org/3017044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54312 0039d316-1c4b-4281-b951-d872f2087c98
* file_util: Get rid of file_util::AppendToPath in icon_util_unittest.cctfarina@chromium.org2010-07-305-49/+53
| | | | | | | | | | | | | | Use AppendASCII from FilePath API instead of the deprecated AppendToPath function. BUG=24672 TEST=trybots Signed-off-by: Thiago Farina <tfarina@chromium.org> Review URL: http://codereview.chromium.org/3046020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54311 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes transition from account creation screen to images login screen.avayvod@chromium.org2010-07-305-16/+63
| | | | | | | | | | BUG=None TEST=Create user account and verify that images login screen is shown and the new user logs in. Review URL: http://codereview.chromium.org/3057020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54310 0039d316-1c4b-4281-b951-d872f2087c98
* Add title for "ask" button on mac.jochen@chromium.org2010-07-301-0/+2
| | | | | | | | | | TEST=unit_tests of mac BUG=50083 TBR=jochen@chromium.org Review URL: http://codereview.chromium.org/3051025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54309 0039d316-1c4b-4281-b951-d872f2087c98
* Command line flag to disable the cookie prompt.jochen@chromium.org2010-07-3019-47/+913
| | | | | | | | | | | | | The XIB change re-introduces the cookie tab view item with the "ask" setting as additinoal tab view item. The controller deletes the one not required according to the command line flag. BUG=50083 TEST=none Review URL: http://codereview.chromium.org/3075013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54308 0039d316-1c4b-4281-b951-d872f2087c98
* Fix build break by updating the test shell and renaming ↵andreip@chromium.org2010-07-303-3/+3
| | | | | | | | renderer_webindexeddatabase* files Review URL: http://codereview.chromium.org/3078011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54307 0039d316-1c4b-4281-b951-d872f2087c98
* Rename IndexedDatabase to IDBFactory to match the specandreip@chromium.org2010-07-3015-58/+61
| | | | | | Review URL: http://codereview.chromium.org/2808083 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54304 0039d316-1c4b-4281-b951-d872f2087c98
* Use new update API during OOBE.nkostylev@google.com2010-07-3012-126/+203
| | | | | | | | | | | Add test shortcut for register screen. BUG= http://crosbug.com/4483 http://crosbug.com/4003 http://crosbug.com/4002 TEST=Manual - update during OOBE should work and reboot if update has been installed. Review URL: http://codereview.chromium.org/2832088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54303 0039d316-1c4b-4281-b951-d872f2087c98
* Memcheck suppressions.glider@chromium.org2010-07-301-0/+84
| | | | | | | | | | | | | Extend a suppression for bug 49404 Suppress uninitialized memory in Webkit (bug 50728) Suppress a leak in Browser::ShowDownloadsTab (bug 50729) BUG=49404,50728,50729 Review URL: http://codereview.chromium.org/3026035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54302 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit 64311 to 64343.jorlow@chromium.org2010-07-301-1/+1
| | | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/3040026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54301 0039d316-1c4b-4281-b951-d872f2087c98
* Show DevTools window when the Inspect shortcut is hit for the first timeapavlov@chromium.org2010-07-301-3/+4
| | | | | | | | | BUG=50724 TEST=manual Review URL: http://codereview.chromium.org/2819081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54300 0039d316-1c4b-4281-b951-d872f2087c98
* Fix new[]/delete mismatch caused by using scoped_ptr<char> to handle strings.glider@chromium.org2010-07-301-3/+3
| | | | | | | | TBR=mbelshe Review URL: http://codereview.chromium.org/3020046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54299 0039d316-1c4b-4281-b951-d872f2087c98
* Updating trunk VERSION from 480.0 to 481.0chrome-release@google.com2010-07-301-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54297 0039d316-1c4b-4281-b951-d872f2087c98
* Reinstating the call to InitiateNavigation when we launch the url from our ↵ananta@chromium.org2010-07-301-0/+7
| | | | | | | | | | | | active document. This is needed to pass the referrer correctly to chrome. TBR=amit Review URL: http://codereview.chromium.org/3080012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54292 0039d316-1c4b-4281-b951-d872f2087c98
* Build fix.evan@chromium.org2010-07-301-2/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54289 0039d316-1c4b-4281-b951-d872f2087c98
* Use notification-based API for getting system proxy settings on Mac rather ↵eroman@chromium.org2010-07-3010-119/+311
| | | | | | | | | than polling. BUG=50587 Review URL: http://codereview.chromium.org/3078009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54288 0039d316-1c4b-4281-b951-d872f2087c98
* Use an integer for the port parameter to the UI test HTTP server.evan@chromium.org2010-07-304-9/+8
| | | | | | Review URL: http://codereview.chromium.org/2884054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54287 0039d316-1c4b-4281-b951-d872f2087c98
* Drop usage of IntToWString in switch values; we can use ASCII now.evan@chromium.org2010-07-304-7/+6
| | | | | | Review URL: http://codereview.chromium.org/3037034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54286 0039d316-1c4b-4281-b951-d872f2087c98
* Convert a bunch of easy AppendSwitchWithValue to *ASCII.evan@chromium.org2010-07-3047-156/+141
| | | | | | | | | For this patch, I skipped over any instance where it wasn't a nearly trivial change. Review URL: http://codereview.chromium.org/3069014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54285 0039d316-1c4b-4281-b951-d872f2087c98
* Miscellaneous ChromeFrame code cleanup. The automation client class ↵ananta@chromium.org2010-07-306-36/+32
| | | | | | | | | | | | | | maintained GURL members holding the url and referrer. We can stuff this information into the ChromeFrameLaunchParams member maintained by the client. This reduces the complexity in the code related to detecting whether we can navigate up front or after chrome initialization. The ChromeFrame ActiveX now launches the automation server in its implementation of IPersistPropertyBag::Load. This avoids race conditions between launching the automation server and navigating to it via put_src. Review URL: http://codereview.chromium.org/3038038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54284 0039d316-1c4b-4281-b951-d872f2087c98
* Add unit tests for base/platform_thread.* and base/lock.*.viettrungluu@chromium.org2010-07-304-2/+323
| | | | | | | | | BUG=none TEST=base_unittests Review URL: http://codereview.chromium.org/3030025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54283 0039d316-1c4b-4281-b951-d872f2087c98
* AutoFill: Determine credit card type based on the CC number and display thejhawkins@chromium.org2010-07-304-38/+125
| | | | | | | | | | | appropriate CC icon. BUG=50080 TEST=none Review URL: http://codereview.chromium.org/3010041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54280 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a typo, that could cause a crash on mac.eroman@chromium.org2010-07-301-1/+1
| | | | | | | | | BUG=50717 TBR=rvargas TEST=Set system proxy settings to use a custom PAC script, then launch TestShell.app -- should not crash. Review URL: http://codereview.chromium.org/3023030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54279 0039d316-1c4b-4281-b951-d872f2087c98
* Disable the page_cycler_database on Windows, because it's really slowdumi@chromium.org2010-07-301-0/+3
| | | | | | | | | | | | | | on XP and Vista. Submitting without waiting for review, because the "XP Perf (webkit.org)" is timing out because of this suite. BUG=40123 TEST=none TBR=chase@chromium.org Review URL: http://codereview.chromium.org/3047026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54266 0039d316-1c4b-4281-b951-d872f2087c98
* Must clear all references to buttons representing a bookmark when that ↵mrossetti@chromium.org2010-07-303-2/+40
| | | | | | | | | | | bookmark gets deleted. BUG=50381 TEST=1) Bring up a bookmark folder which can be scrolled. 2) Scroll it a bit. 3) Cut or delete a bookmark using the contextual menu. 4) Scroll using the mouse scroll wheel. If there is no crash at this point then the bug has been fixed. Review URL: http://codereview.chromium.org/3030029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54262 0039d316-1c4b-4281-b951-d872f2087c98
* Update bug number for Snippets.FAILS_ThaiUTF8.huanr@chromium.org2010-07-301-2/+1
| | | | | | | | | BUG=50705 TEST=Snippets.FAILS_ThaiUTF8 Review URL: http://codereview.chromium.org/3079010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54261 0039d316-1c4b-4281-b951-d872f2087c98
* Use relative instead of absolute URIs in SPDY requestsmbelshe@chromium.org2010-07-303-5/+37
| | | | | | | | | BUG=50549 TEST=existing Review URL: http://codereview.chromium.org/3035037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54260 0039d316-1c4b-4281-b951-d872f2087c98
* Reland r53603 - Make the OmniboxSearchHint infobar use PAGE_ACTION_TYPE.tfarina@chromium.org2010-07-305-27/+1
| | | | | | | | | | | | | | | | | This reverts commit 893e3e083fe8d77949860cdb1af7fc14a371651e. It was reverted due to a LINK failure, but reverting didn't fixed either, so I'm relanding it again. BUG=39102 TEST=trybots Review URL: http://codereview.chromium.org/2805096/ TBR=mirandac@chromium.org Review URL: http://codereview.chromium.org/3057018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54259 0039d316-1c4b-4281-b951-d872f2087c98
* Bump the SPDY protocol version to version 2.mbelshe@chromium.org2010-07-3011-72/+90
| | | | | | | | | | | | | Remove "http1.1" and "spdy" from the NPN advertisement string (the proper values are "http/1.1" and "spdy/2", which were included redundantly). BUG=50550 TEST=existing Review URL: http://codereview.chromium.org/3044034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54258 0039d316-1c4b-4281-b951-d872f2087c98