summaryrefslogtreecommitdiffstats
path: root/chrome/test/automation
diff options
context:
space:
mode:
authormsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-07 17:20:12 +0000
committermsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-07 17:20:12 +0000
commit0985614e49db6b4a94c551fda1107462b53a9aac (patch)
tree60ddc04f5622960211f528e828b2ac7f38f0f31b /chrome/test/automation
parentbab8eff84eba3743c1812cc8fb4c49a9771864c4 (diff)
downloadchromium_src-0985614e49db6b4a94c551fda1107462b53a9aac.zip
chromium_src-0985614e49db6b4a94c551fda1107462b53a9aac.tar.gz
chromium_src-0985614e49db6b4a94c551fda1107462b53a9aac.tar.bz2
*Fixup about and chrome scheme URLs in URLFixerUpper::FixupURL.
*Update AboutSource to use the source_name of each about/chrome page. *Make WillHandleBrowserAboutURL fix up schemes and handle chrome://foo/ -Redirect memory to memory-redirect (wasn't handling chrome://memory/). -Catalog all kChromeUI*Hosts in url_constants.cc -Simplify paths (credits, os-credits, ipc, settings, about/version). -Nix web_ui_util::ChromeURLHostEquals (use scheme & host comparison). -Favor GURL::SchemeIs and url_constants, update & expand tests. -Add and fixup chrome://chrome-urls (the about:about page). BUG=55771 TEST=Access about:, about://, chrome:, chrome:// pages. Review URL: http://codereview.chromium.org/7068007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88142 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation')
-rw-r--r--chrome/test/automation/automation_proxy_uitest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/automation/automation_proxy_uitest.cc b/chrome/test/automation/automation_proxy_uitest.cc
index 3e4981e..4e5ba9b 100644
--- a/chrome/test/automation/automation_proxy_uitest.cc
+++ b/chrome/test/automation/automation_proxy_uitest.cc
@@ -134,7 +134,7 @@ TEST_F(AutomationProxyVisibleTest, MAYBE_WindowGetViewBounds) {
ASSERT_TRUE(tab1->GetCurrentURL(&tab1_url));
// Add another tab so we can simulate dragging.
- ASSERT_TRUE(browser->AppendTab(GURL("about:")));
+ ASSERT_TRUE(browser->AppendTab(GURL(chrome::kChromeUIVersionURL)));
scoped_refptr<TabProxy> tab2(browser->GetTab(1));
ASSERT_TRUE(tab2.get());