diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 18:39:24 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 18:39:24 +0000 |
commit | 3f8cb62b2416b1365407eaaf935664509ebcef5c (patch) | |
tree | 4293fcd06e7de652e09967d7b9479135704886e9 /chrome/test | |
parent | 8793b4d15e6af6b41cc5a3f819c219cfb65b1e73 (diff) | |
download | chromium_src-3f8cb62b2416b1365407eaaf935664509ebcef5c.zip chromium_src-3f8cb62b2416b1365407eaaf935664509ebcef5c.tar.gz chromium_src-3f8cb62b2416b1365407eaaf935664509ebcef5c.tar.bz2 |
More URL constants replacement.
Review URL: http://codereview.chromium.org/28170
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10487 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/automated_ui_tests/automated_ui_tests.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/test/automated_ui_tests/automated_ui_tests.cc b/chrome/test/automated_ui_tests/automated_ui_tests.cc index d87d521..9baa7e2 100644 --- a/chrome/test/automated_ui_tests/automated_ui_tests.cc +++ b/chrome/test/automated_ui_tests/automated_ui_tests.cc @@ -18,6 +18,7 @@ #include "chrome/common/chrome_paths.h" #include "chrome/common/env_vars.h" #include "chrome/common/libxml_utils.h" +#include "chrome/common/url_constants.h" #include "chrome/common/win_util.h" #include "chrome/test/automated_ui_tests/automated_ui_tests.h" #include "chrome/test/automation/browser_proxy.h" @@ -738,7 +739,7 @@ bool AutomatedUITest::ForceCrash() { return false; } scoped_ptr<TabProxy> tab(browser->GetActiveTab()); - GURL test_url("about:crash"); + GURL test_url(chrome::kAboutCrashURL); bool did_timeout; tab->NavigateToURLWithTimeout(test_url, kDebuggingTimeoutMsec, &did_timeout); if (!did_timeout) { |