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 "base/strings/string_util.h" | 6 #include "base/strings/string_util.h" |
7 #include "chrome/app/chrome_command_ids.h" | 7 #include "chrome/app/chrome_command_ids.h" |
8 #include "chrome/browser/chrome_notification_types.h" | 8 #include "chrome/browser/chrome_notification_types.h" |
9 #include "chrome/browser/extensions/extension_browsertest.h" | 9 #include "chrome/browser/extensions/extension_browsertest.h" |
10 #include "chrome/browser/extensions/extension_service.h" | 10 #include "chrome/browser/extensions/extension_service.h" |
11 #include "chrome/browser/infobars/confirm_infobar_delegate.h" | |
12 #include "chrome/browser/infobars/infobar_service.h" | 11 #include "chrome/browser/infobars/infobar_service.h" |
13 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/themes/theme_service.h" | 13 #include "chrome/browser/themes/theme_service.h" |
15 #include "chrome/browser/themes/theme_service_factory.h" | 14 #include "chrome/browser/themes/theme_service_factory.h" |
16 #include "chrome/browser/ui/browser.h" | 15 #include "chrome/browser/ui/browser.h" |
17 #include "chrome/browser/ui/browser_commands.h" | 16 #include "chrome/browser/ui/browser_commands.h" |
18 #include "chrome/browser/ui/browser_finder.h" | 17 #include "chrome/browser/ui/browser_finder.h" |
19 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 18 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
20 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" | 19 #include "chrome/browser/ui/webui/ntp/new_tab_ui.h" |
21 #include "chrome/common/url_constants.h" | 20 #include "chrome/common/url_constants.h" |
22 #include "chrome/test/base/test_switches.h" | 21 #include "chrome/test/base/test_switches.h" |
23 #include "chrome/test/base/ui_test_utils.h" | 22 #include "chrome/test/base/ui_test_utils.h" |
| 23 #include "components/infobars/core/confirm_infobar_delegate.h" |
24 #include "components/infobars/core/infobar.h" | 24 #include "components/infobars/core/infobar.h" |
25 #include "content/public/browser/web_contents.h" | 25 #include "content/public/browser/web_contents.h" |
26 #include "content/public/test/browser_test_utils.h" | 26 #include "content/public/test/browser_test_utils.h" |
27 #include "extensions/browser/app_sorting.h" | 27 #include "extensions/browser/app_sorting.h" |
28 #include "extensions/browser/extension_prefs.h" | 28 #include "extensions/browser/extension_prefs.h" |
29 #include "extensions/common/id_util.h" | 29 #include "extensions/common/id_util.h" |
30 | 30 |
31 using content::WebContents; | 31 using content::WebContents; |
32 using extensions::AppSorting; | 32 using extensions::AppSorting; |
33 using extensions::Extension; | 33 using extensions::Extension; |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 sorting->OnExtensionMoved( | 242 sorting->OnExtensionMoved( |
243 app_id, base::EmptyString(), extension_misc::kWebStoreAppId); | 243 app_id, base::EmptyString(), extension_misc::kWebStoreAppId); |
244 EXPECT_EQ(app_id, last_reordered_extension_id_); | 244 EXPECT_EQ(app_id, last_reordered_extension_id_); |
245 | 245 |
246 // Now install the app. | 246 // Now install the app. |
247 const extensions::Extension* test_app = LoadExtension(app_dir); | 247 const extensions::Extension* test_app = LoadExtension(app_dir); |
248 ASSERT_TRUE(test_app); | 248 ASSERT_TRUE(test_app); |
249 EXPECT_TRUE(service->GetInstalledExtension(app_id)); | 249 EXPECT_TRUE(service->GetInstalledExtension(app_id)); |
250 EXPECT_EQ(app_id, test_app->id()); | 250 EXPECT_EQ(app_id, test_app->id()); |
251 } | 251 } |
OLD | NEW |