OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/utf_string_conversions.h" | 5 #include "base/utf_string_conversions.h" |
6 #include "chrome/browser/automation/automation_util.h" | 6 #include "chrome/browser/automation/automation_util.h" |
7 #include "chrome/browser/extensions/extension_apitest.h" | 7 #include "chrome/browser/extensions/extension_apitest.h" |
8 #include "chrome/browser/extensions/extension_host.h" | 8 #include "chrome/browser/extensions/extension_host.h" |
9 #include "chrome/browser/extensions/extension_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
11 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
12 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 12 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
13 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
14 #include "chrome/common/url_constants.h" | 14 #include "chrome/common/url_constants.h" |
15 #include "chrome/test/base/ui_test_utils.h" | 15 #include "chrome/test/base/ui_test_utils.h" |
16 #include "content/browser/site_instance.h" | |
17 #include "content/browser/renderer_host/render_view_host.h" | 16 #include "content/browser/renderer_host/render_view_host.h" |
18 #include "content/public/browser/render_process_host.h" | 17 #include "content/public/browser/render_process_host.h" |
| 18 #include "content/public/browser/site_instance.h" |
19 #include "content/public/browser/web_contents.h" | 19 #include "content/public/browser/web_contents.h" |
20 #include "net/base/mock_host_resolver.h" | 20 #include "net/base/mock_host_resolver.h" |
21 | 21 |
22 using content::NavigationController; | 22 using content::NavigationController; |
23 using content::WebContents; | 23 using content::WebContents; |
24 | 24 |
25 namespace { | 25 namespace { |
26 | 26 |
27 class IsolatedAppTest : public ExtensionBrowserTest { | 27 class IsolatedAppTest : public ExtensionBrowserTest { |
28 public: | 28 public: |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 EXPECT_NE(hosted1_host, web1_host); | 294 EXPECT_NE(hosted1_host, web1_host); |
295 EXPECT_NE(hosted1_host, extension1_host); | 295 EXPECT_NE(hosted1_host, extension1_host); |
296 | 296 |
297 // Web pages only share with each other. | 297 // Web pages only share with each other. |
298 EXPECT_EQ(web1_host, web2_host); | 298 EXPECT_EQ(web1_host, web2_host); |
299 EXPECT_NE(web1_host, extension1_host); | 299 EXPECT_NE(web1_host, extension1_host); |
300 | 300 |
301 // Extensions only share with each other. | 301 // Extensions only share with each other. |
302 EXPECT_EQ(extension1_host, extension2_host); | 302 EXPECT_EQ(extension1_host, extension2_host); |
303 } | 303 } |
OLD | NEW |