| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "chrome/browser/ui/browser.h" | 6 #include "chrome/browser/ui/browser.h" |
| 7 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 7 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 8 #include "chrome/common/chrome_switches.h" | 8 #include "chrome/common/chrome_switches.h" |
| 9 #include "chrome/test/base/in_process_browser_test.h" | 9 #include "chrome/test/base/in_process_browser_test.h" |
| 10 #include "chrome/test/base/ui_test_utils.h" | 10 #include "chrome/test/base/ui_test_utils.h" |
| 11 #include "content/public/browser/navigation_controller.h" | 11 #include "content/public/browser/navigation_controller.h" |
| 12 #include "content/public/browser/navigation_entry.h" | 12 #include "content/public/browser/navigation_entry.h" |
| 13 #include "content/public/browser/web_contents.h" | 13 #include "content/public/browser/web_contents.h" |
| 14 #include "content/public/common/content_switches.h" | 14 #include "content/public/common/content_switches.h" |
| 15 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 | 18 |
| 19 class ChromeContentBrowserClientBrowserTest : public InProcessBrowserTest { | 19 class ChromeContentBrowserClientBrowserTest : public InProcessBrowserTest { |
| 20 public: | 20 public: |
| 21 // Returns the last committed navigation entry of the first tab. May be NULL | 21 // Returns the last committed navigation entry of the first tab. May be NULL |
| 22 // if there is no such entry. | 22 // if there is no such entry. |
| 23 NavigationEntry* GetLastCommittedEntry() { | 23 NavigationEntry* GetLastCommittedEntry() { |
| 24 return browser()->tab_strip_model()->GetWebContentsAt(0)-> | 24 return browser()->tab_strip_model()->GetWebContentsAt(0)-> |
| 25 GetController().GetLastCommittedEntry(); | 25 GetController().GetLastCommittedEntry(); |
| 26 } | 26 } |
| 27 | 27 |
| 28 #if defined(OS_CHROMEOS) | 28 #if defined(OS_CHROMEOS) |
| 29 virtual void SetUpCommandLine(base::CommandLine* command_line) OVERRIDE { | 29 virtual void SetUpCommandLine(base::CommandLine* command_line) override { |
| 30 command_line->AppendSwitch(switches::kDisableAboutInSettings); | 30 command_line->AppendSwitch(switches::kDisableAboutInSettings); |
| 31 } | 31 } |
| 32 #endif | 32 #endif |
| 33 }; | 33 }; |
| 34 | 34 |
| 35 IN_PROC_BROWSER_TEST_F(ChromeContentBrowserClientBrowserTest, | 35 IN_PROC_BROWSER_TEST_F(ChromeContentBrowserClientBrowserTest, |
| 36 UberURLHandler_SettingsPage) { | 36 UberURLHandler_SettingsPage) { |
| 37 const GURL url_short("chrome://settings/"); | 37 const GURL url_short("chrome://settings/"); |
| 38 const GURL url_long("chrome://chrome/settings/"); | 38 const GURL url_long("chrome://chrome/settings/"); |
| 39 | 39 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 | 94 |
| 95 ui_test_utils::NavigateToURL(browser(), url); | 95 ui_test_utils::NavigateToURL(browser(), url); |
| 96 NavigationEntry* entry = GetLastCommittedEntry(); | 96 NavigationEntry* entry = GetLastCommittedEntry(); |
| 97 | 97 |
| 98 ASSERT_TRUE(entry != NULL); | 98 ASSERT_TRUE(entry != NULL); |
| 99 EXPECT_EQ(url, entry->GetURL()); | 99 EXPECT_EQ(url, entry->GetURL()); |
| 100 EXPECT_EQ(url, entry->GetVirtualURL()); | 100 EXPECT_EQ(url, entry->GetVirtualURL()); |
| 101 } | 101 } |
| 102 | 102 |
| 103 } // namespace content | 103 } // namespace content |
| OLD | NEW |