Chromium Code Reviews| Index: extensions/common/constants.h |
| diff --git a/extensions/common/constants.h b/extensions/common/constants.h |
| index 66fe2ba4d1e6b9250a5bcc29a3940945fa914c50..89d7efb1b0fd090106249e73c16dd37faa13120b 100644 |
| --- a/extensions/common/constants.h |
| +++ b/extensions/common/constants.h |
| @@ -139,6 +139,12 @@ extern const size_t kNumExtensionIconSizes; |
| extern const int kExtensionActionIconSizes[]; |
| extern const size_t kNumExtensionActionIconSizes; |
| +// The type of injected script. |
| +enum InjectedScriptType { |
| + CONTENT_SCRIPT, // A content script specified in the extenion's manifest. |
|
not at google - send to devlin
2014/06/27 23:24:33
extension's
Devlin
2014/06/30 17:06:10
That typo was totally my intentional way of making
|
| + PROGRAMMATIC_SCRIPT // A script injected via, e.g. tabs.executeScript(). |
| +}; |
| + |
| } // namespace extension_misc |
| #endif // EXTENSIONS_COMMON_CONSTANTS_H_ |