OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_TEST_UTIL_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_TEST_UTIL_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_TEST_UTIL_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_TEST_UTIL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "extensions/common/manifest.h" | 12 #include "extensions/common/manifest.h" |
13 | 13 |
14 class Profile; | 14 class Profile; |
| 15 class ToolbarActionsModel; |
15 | 16 |
16 namespace content { | 17 namespace content { |
17 class WebContents; | 18 class WebContents; |
18 } | 19 } |
19 | 20 |
20 namespace extensions { | 21 namespace extensions { |
21 class Extension; | 22 class Extension; |
22 class ExtensionToolbarModel; | |
23 | 23 |
24 namespace extension_action_test_util { | 24 namespace extension_action_test_util { |
25 | 25 |
26 // The different possible types of actions for an extension to have (we use | 26 // The different possible types of actions for an extension to have (we use |
27 // this instead of ActionInfo::Type because we want a "none" option). | 27 // this instead of ActionInfo::Type because we want a "none" option). |
28 enum ActionType { | 28 enum ActionType { |
29 NO_ACTION, | 29 NO_ACTION, |
30 PAGE_ACTION, | 30 PAGE_ACTION, |
31 BROWSER_ACTION | 31 BROWSER_ACTION |
32 }; | 32 }; |
(...skipping 11 matching lines...) Expand all Loading... |
44 // Creates and returns an extension with the given |name| with the given | 44 // Creates and returns an extension with the given |name| with the given |
45 // |action_type|. | 45 // |action_type|. |
46 // Does not add the extension to the extension service or registry. | 46 // Does not add the extension to the extension service or registry. |
47 scoped_refptr<const Extension> CreateActionExtension(const std::string& name, | 47 scoped_refptr<const Extension> CreateActionExtension(const std::string& name, |
48 ActionType action_type); | 48 ActionType action_type); |
49 scoped_refptr<const Extension> CreateActionExtension( | 49 scoped_refptr<const Extension> CreateActionExtension( |
50 const std::string& name, | 50 const std::string& name, |
51 ActionType action_type, | 51 ActionType action_type, |
52 Manifest::Location location); | 52 Manifest::Location location); |
53 | 53 |
54 // Creates a new ExtensionToolbarModel for the given |profile|, and associates | 54 // Creates a new ToolbarActionsModel for the given |profile|, and associates |
55 // it with the profile as a keyed service. | 55 // it with the profile as a keyed service. |
56 // This should only be used in unit tests (since it assumes the existence of | 56 // This should only be used in unit tests (since it assumes the existence of |
57 // a TestExtensionSystem), but if running a browser test, the model should | 57 // a TestExtensionSystem), but if running a browser test, the model should |
58 // already be created. | 58 // already be created. |
59 ExtensionToolbarModel* CreateToolbarModelForProfile(Profile* profile); | 59 ToolbarActionsModel* CreateToolbarModelForProfile(Profile* profile); |
60 // Like above, but doesn't run the ExtensionSystem::ready() task for the new | 60 // Like above, but doesn't run the ExtensionSystem::ready() task for the new |
61 // model. | 61 // model. |
62 ExtensionToolbarModel* CreateToolbarModelForProfileWithoutWaitingForReady( | 62 ToolbarActionsModel* CreateToolbarModelForProfileWithoutWaitingForReady( |
63 Profile* profile); | 63 Profile* profile); |
64 | 64 |
65 } // namespace extension_action_test_util | 65 } // namespace extension_action_test_util |
66 } // namespace extensions | 66 } // namespace extensions |
67 | 67 |
68 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_TEST_UTIL_H_ | 68 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_ACTION_TEST_UTIL_H_ |
OLD | NEW |