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 #ifndef CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/files/file.h" | 10 #include "base/files/file.h" |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 const Extension* extension, | 87 const Extension* extension, |
88 bool is_update, | 88 bool is_update, |
89 bool from_ephemeral, | 89 bool from_ephemeral, |
90 const std::string& old_name) override; | 90 const std::string& old_name) override; |
91 void OnExtensionUninstalled(content::BrowserContext* browser_context, | 91 void OnExtensionUninstalled(content::BrowserContext* browser_context, |
92 const Extension* extension, | 92 const Extension* extension, |
93 extensions::UninstallReason reason) override; | 93 extensions::UninstallReason reason) override; |
94 | 94 |
95 // ErrorConsole::Observer: | 95 // ErrorConsole::Observer: |
96 void OnErrorAdded(const ExtensionError* error) override; | 96 void OnErrorAdded(const ExtensionError* error) override; |
| 97 void OnErrorsRemoved(const std::set<std::string>& extension_ids) override; |
97 | 98 |
98 // ProcessManagerObserver: | 99 // ProcessManagerObserver: |
99 void OnExtensionFrameRegistered( | 100 void OnExtensionFrameRegistered( |
100 const std::string& extension_id, | 101 const std::string& extension_id, |
101 content::RenderFrameHost* render_frame_host) override; | 102 content::RenderFrameHost* render_frame_host) override; |
102 void OnExtensionFrameUnregistered( | 103 void OnExtensionFrameUnregistered( |
103 const std::string& extension_id, | 104 const std::string& extension_id, |
104 content::RenderFrameHost* render_frame_host) override; | 105 content::RenderFrameHost* render_frame_host) override; |
105 | 106 |
106 // AppWindowRegistry::Observer: | 107 // AppWindowRegistry::Observer: |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
528 protected: | 529 protected: |
529 ~DeveloperPrivateShowPathFunction() override; | 530 ~DeveloperPrivateShowPathFunction() override; |
530 ResponseAction Run() override; | 531 ResponseAction Run() override; |
531 }; | 532 }; |
532 | 533 |
533 } // namespace api | 534 } // namespace api |
534 | 535 |
535 } // namespace extensions | 536 } // namespace extensions |
536 | 537 |
537 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API
_H_ | 538 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API
_H_ |
OLD | NEW |