Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: extensions/browser/process_manager_observer.h

Issue 823703004: Tracking push events for lucid sleep (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Kill renderer if it sends a bad message id Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 EXTENSIONS_BROWSER_PROCESS_MANAGER_OBSERVER_H_ 5 #ifndef EXTENSIONS_BROWSER_PROCESS_MANAGER_OBSERVER_H_
6 #define EXTENSIONS_BROWSER_PROCESS_MANAGER_OBSERVER_H_ 6 #define EXTENSIONS_BROWSER_PROCESS_MANAGER_OBSERVER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 namespace extensions { 10 namespace extensions {
11 class Extension; 11 class Extension;
12 12
13 class ProcessManagerObserver { 13 class ProcessManagerObserver {
14 public: 14 public:
15 // Called immediately after an extension background host is started. 15 // Called immediately after an extension background host is started.
16 virtual void OnBackgroundHostStartup(const Extension* extension) {} 16 virtual void OnBackgroundHostStartup(const Extension* extension) {}
17 17
18 // Called immediately after an ExtensionHost for an extension with a lazy
19 // background page is created.
20 virtual void OnBackgroundHostCreated(ExtensionHost* host) {}
21
18 // Called immediately after the extension background host is destroyed. 22 // Called immediately after the extension background host is destroyed.
19 virtual void OnBackgroundHostClose(const std::string& extension_id) {} 23 virtual void OnBackgroundHostClose(const std::string& extension_id) {}
20 }; 24 };
21 25
22 } // namespace extensions 26 } // namespace extensions
23 27
24 #endif // EXTENSIONS_BROWSER_PROCESS_MANAGER_OBSERVER_H_ 28 #endif // EXTENSIONS_BROWSER_PROCESS_MANAGER_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698