diff options
author | rohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-12 23:05:16 +0000 |
---|---|---|
committer | rohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-12 23:05:16 +0000 |
commit | 83de85e769936a09955bcbce489a1d77506f6386 (patch) | |
tree | 63c6570f554626b2ac59ee228eb7913cf5d5b263 | |
parent | 5147ba5af41118f6908db4ae69e6cc91edccd7ef (diff) | |
download | chromium_src-83de85e769936a09955bcbce489a1d77506f6386.zip chromium_src-83de85e769936a09955bcbce489a1d77506f6386.tar.gz chromium_src-83de85e769936a09955bcbce489a1d77506f6386.tar.bz2 |
Fix broken trybot compiles by moving test cases inside the anonymous namespace.
BUG=None
TEST=Happy trybots.
Review URL: http://codereview.chromium.org/3697009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62351 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/browser_navigator_browsertest.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/browser_navigator_browsertest.cc b/chrome/browser/browser_navigator_browsertest.cc index fc9ce24..844cd3b 100644 --- a/chrome/browser/browser_navigator_browsertest.cc +++ b/chrome/browser/browser_navigator_browsertest.cc @@ -71,8 +71,6 @@ class BrowserNavigatorTest : public InProcessBrowserTest, } }; -} // namespace - // This test verifies that when a navigation occurs within a tab, the tab count // of the Browser remains the same and the current tab bears the loaded URL. IN_PROC_BROWSER_TEST_F(BrowserNavigatorTest, Disposition_CurrentTab) { @@ -381,3 +379,4 @@ IN_PROC_BROWSER_TEST_F(BrowserNavigatorTest, Tabstrip_InsertAtIndex) { EXPECT_EQ(2, browser()->tab_count()); } +} // namespace |