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/chrome_notification_types.h" | 6 #include "chrome/browser/chrome_notification_types.h" |
7 #include "chrome/browser/extensions/extension_apitest.h" | 7 #include "chrome/browser/extensions/extension_apitest.h" |
8 #include "chrome/browser/extensions/extension_service.h" | 8 #include "chrome/browser/extensions/extension_service.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/ui/blocked_content/popup_blocker_tab_helper.h" | 10 #include "chrome/browser/ui/blocked_content/popup_blocker_tab_helper.h" |
11 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
12 #include "chrome/browser/ui/browser_commands.h" | 12 #include "chrome/browser/ui/browser_commands.h" |
13 #include "chrome/browser/ui/browser_finder.h" | 13 #include "chrome/browser/ui/browser_finder.h" |
14 #include "chrome/browser/ui/browser_list.h" | 14 #include "chrome/browser/ui/browser_list.h" |
15 #include "chrome/browser/ui/browser_window.h" | 15 #include "chrome/browser/ui/browser_window.h" |
16 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 16 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
17 #include "chrome/common/chrome_switches.h" | 17 #include "chrome/common/chrome_switches.h" |
18 #include "chrome/common/extensions/extension_file_util.h" | |
19 #include "chrome/test/base/test_switches.h" | 18 #include "chrome/test/base/test_switches.h" |
20 #include "chrome/test/base/ui_test_utils.h" | 19 #include "chrome/test/base/ui_test_utils.h" |
21 #include "content/public/browser/navigation_entry.h" | 20 #include "content/public/browser/navigation_entry.h" |
22 #include "content/public/browser/notification_service.h" | 21 #include "content/public/browser/notification_service.h" |
23 #include "content/public/browser/render_process_host.h" | 22 #include "content/public/browser/render_process_host.h" |
24 #include "content/public/browser/render_view_host.h" | 23 #include "content/public/browser/render_view_host.h" |
25 #include "content/public/browser/site_instance.h" | 24 #include "content/public/browser/site_instance.h" |
26 #include "content/public/browser/web_contents.h" | 25 #include "content/public/browser/web_contents.h" |
27 #include "content/public/test/browser_test_utils.h" | 26 #include "content/public/test/browser_test_utils.h" |
28 #include "content/public/test/test_navigation_observer.h" | 27 #include "content/public/test/test_navigation_observer.h" |
29 #include "extensions/browser/extension_host.h" | 28 #include "extensions/browser/extension_host.h" |
30 #include "extensions/browser/extension_system.h" | 29 #include "extensions/browser/extension_system.h" |
31 #include "extensions/browser/process_map.h" | 30 #include "extensions/browser/process_map.h" |
32 #include "extensions/common/extension.h" | 31 #include "extensions/common/extension.h" |
| 32 #include "extensions/common/file_util.h" |
33 #include "extensions/common/switches.h" | 33 #include "extensions/common/switches.h" |
34 #include "net/dns/mock_host_resolver.h" | 34 #include "net/dns/mock_host_resolver.h" |
35 #include "net/test/embedded_test_server/embedded_test_server.h" | 35 #include "net/test/embedded_test_server/embedded_test_server.h" |
36 #include "sync/api/string_ordinal.h" | 36 #include "sync/api/string_ordinal.h" |
37 | 37 |
38 using content::NavigationController; | 38 using content::NavigationController; |
39 using content::RenderViewHost; | 39 using content::RenderViewHost; |
40 using content::SiteInstance; | 40 using content::SiteInstance; |
41 using content::WebContents; | 41 using content::WebContents; |
42 using extensions::Extension; | 42 using extensions::Extension; |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 browser()->profile())->extension_service(); | 296 browser()->profile())->extension_service(); |
297 extensions::ProcessMap* process_map = | 297 extensions::ProcessMap* process_map = |
298 extensions::ProcessMap::Get(browser()->profile()); | 298 extensions::ProcessMap::Get(browser()->profile()); |
299 | 299 |
300 host_resolver()->AddRule("*", "127.0.0.1"); | 300 host_resolver()->AddRule("*", "127.0.0.1"); |
301 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady()); | 301 ASSERT_TRUE(embedded_test_server()->InitializeAndWaitUntilReady()); |
302 GURL base_url = GetTestBaseURL("app_process"); | 302 GURL base_url = GetTestBaseURL("app_process"); |
303 | 303 |
304 // Load an app as a bookmark app. | 304 // Load an app as a bookmark app. |
305 std::string error; | 305 std::string error; |
306 scoped_refptr<const Extension> extension(extension_file_util::LoadExtension( | 306 scoped_refptr<const Extension> extension(extensions::file_util::LoadExtension( |
307 test_data_dir_.AppendASCII("app_process"), | 307 test_data_dir_.AppendASCII("app_process"), |
308 extensions::Manifest::UNPACKED, | 308 extensions::Manifest::UNPACKED, |
309 Extension::FROM_BOOKMARK, | 309 Extension::FROM_BOOKMARK, |
310 &error)); | 310 &error)); |
311 service->OnExtensionInstalled(extension.get(), | 311 service->OnExtensionInstalled(extension.get(), |
312 syncer::StringOrdinal::CreateInitialOrdinal(), | 312 syncer::StringOrdinal::CreateInitialOrdinal(), |
313 false /* no requirement errors */, | 313 false /* no requirement errors */, |
314 extensions::NOT_BLACKLISTED, | 314 extensions::NOT_BLACKLISTED, |
315 false /* don't wait for idle */); | 315 false /* don't wait for idle */); |
316 ASSERT_TRUE(extension.get()); | 316 ASSERT_TRUE(extension.get()); |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
872 // Navigate the popup to another process outside the app. | 872 // Navigate the popup to another process outside the app. |
873 GURL non_app_url(base_url.Resolve("path3/empty.html")); | 873 GURL non_app_url(base_url.Resolve("path3/empty.html")); |
874 ui_test_utils::NavigateToURL(active_browser_list->get(1), non_app_url); | 874 ui_test_utils::NavigateToURL(active_browser_list->get(1), non_app_url); |
875 SiteInstance* new_instance = popup_contents->GetSiteInstance(); | 875 SiteInstance* new_instance = popup_contents->GetSiteInstance(); |
876 EXPECT_NE(app_instance, new_instance); | 876 EXPECT_NE(app_instance, new_instance); |
877 | 877 |
878 // It should still be in the same BrowsingInstance, allowing postMessage to | 878 // It should still be in the same BrowsingInstance, allowing postMessage to |
879 // work. | 879 // work. |
880 EXPECT_TRUE(app_instance->IsRelatedSiteInstance(new_instance)); | 880 EXPECT_TRUE(app_instance->IsRelatedSiteInstance(new_instance)); |
881 } | 881 } |
OLD | NEW |