Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_COMMON_EXTENSIONS_EXTENSION_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1021 | 1021 |
| 1022 // Was the extension already disabled? | 1022 // Was the extension already disabled? |
| 1023 bool already_disabled; | 1023 bool already_disabled; |
| 1024 | 1024 |
| 1025 // The extension being unloaded - this should always be non-NULL. | 1025 // The extension being unloaded - this should always be non-NULL. |
| 1026 const Extension* extension; | 1026 const Extension* extension; |
| 1027 | 1027 |
| 1028 UnloadedExtensionInfo(const Extension* extension, Reason reason); | 1028 UnloadedExtensionInfo(const Extension* extension, Reason reason); |
| 1029 }; | 1029 }; |
| 1030 | 1030 |
| 1031 struct AppNotificationInfo { | |
| 1032 std::string extension_id; | |
| 1033 }; | |
|
Finnur
2011/06/20 12:21:46
This struct doesn't seem to be used anywhere and t
asargent_no_longer_on_chrome
2011/06/21 18:10:11
Good catch, I forgot to remove this from the CL.
| |
| 1034 | |
| 1031 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_ | 1035 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
| OLD | NEW |