| 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 <string> | 5 #include <string> |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "chrome/browser/chrome_notification_types.h" | 8 #include "chrome/browser/chrome_notification_types.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/tabs/tab_strip_model.h" | 12 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 13 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
| 14 #include "chrome/common/extensions/extension.h" | |
| 15 #include "chrome/common/extensions/extension_icon_set.h" | 14 #include "chrome/common/extensions/extension_icon_set.h" |
| 16 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" | 15 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" |
| 17 #include "chrome/common/extensions/manifest_handlers/icons_handler.h" | 16 #include "chrome/common/extensions/manifest_handlers/icons_handler.h" |
| 18 #include "chrome/test/base/in_process_browser_test.h" | 17 #include "chrome/test/base/in_process_browser_test.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/notification_details.h" | 20 #include "content/public/browser/notification_details.h" |
| 22 #include "content/public/browser/notification_observer.h" | 21 #include "content/public/browser/notification_observer.h" |
| 23 #include "content/public/browser/notification_registrar.h" | 22 #include "content/public/browser/notification_registrar.h" |
| 24 #include "content/public/browser/notification_service.h" | 23 #include "content/public/browser/notification_service.h" |
| 25 #include "content/public/browser/web_contents.h" | 24 #include "content/public/browser/web_contents.h" |
| 26 #include "content/public/test/browser_test_utils.h" | 25 #include "content/public/test/browser_test_utils.h" |
| 26 #include "extensions/common/extension.h" |
| 27 #include "extensions/common/permissions/permission_set.h" | 27 #include "extensions/common/permissions/permission_set.h" |
| 28 | 28 |
| 29 namespace extensions { | 29 namespace extensions { |
| 30 | 30 |
| 31 class ExtensionFromWebAppTest | 31 class ExtensionFromWebAppTest |
| 32 : public InProcessBrowserTest, public content::NotificationObserver { | 32 : public InProcessBrowserTest, public content::NotificationObserver { |
| 33 protected: | 33 protected: |
| 34 ExtensionFromWebAppTest() : installed_extension_(NULL) { | 34 ExtensionFromWebAppTest() : installed_extension_(NULL) { |
| 35 } | 35 } |
| 36 | 36 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 EXPECT_EQ("", installed_extension_->description()); | 86 EXPECT_EQ("", installed_extension_->description()); |
| 87 EXPECT_EQ(GURL("http://www.example.com/"), | 87 EXPECT_EQ(GURL("http://www.example.com/"), |
| 88 AppLaunchInfo::GetLaunchWebURL(installed_extension_)); | 88 AppLaunchInfo::GetLaunchWebURL(installed_extension_)); |
| 89 EXPECT_EQ(LAUNCH_TAB, | 89 EXPECT_EQ(LAUNCH_TAB, |
| 90 AppLaunchInfo::GetLaunchContainer(installed_extension_)); | 90 AppLaunchInfo::GetLaunchContainer(installed_extension_)); |
| 91 EXPECT_EQ(0u, installed_extension_->GetActivePermissions()->apis().size()); | 91 EXPECT_EQ(0u, installed_extension_->GetActivePermissions()->apis().size()); |
| 92 EXPECT_EQ(0u, IconsInfo::GetIcons(installed_extension_).map().size()); | 92 EXPECT_EQ(0u, IconsInfo::GetIcons(installed_extension_).map().size()); |
| 93 } | 93 } |
| 94 | 94 |
| 95 } // namespace extensions | 95 } // namespace extensions |
| OLD | NEW |