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

Unified Diff: content/public/browser/browser_child_process_observer.h

Issue 12212089: content: convert child process notifications to observer usage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/browser_child_process_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/browser_child_process_observer.h
diff --git a/content/public/browser/browser_child_process_observer.h b/content/public/browser/browser_child_process_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..f17cbf8a649c964e461aa362eff6eb533b214101
--- /dev/null
+++ b/content/public/browser/browser_child_process_observer.h
@@ -0,0 +1,45 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
tfarina 2013/02/26 19:47:25 no (c)
Paweł Hajdan Jr. 2013/02/27 19:13:23 Done. Note that I see little point for drive-bys
tfarina 2013/02/27 19:17:13 If no one points, people will keep using it.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_OBSERVER_H_
+#define CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_OBSERVER_H_
+
+#include "base/basictypes.h"
tfarina 2013/02/26 19:47:25 can you remove this now?
Paweł Hajdan Jr. 2013/02/27 19:13:23 Done.
+#include "content/common/content_export.h"
+
+namespace content {
+
+struct ChildProcessData;
+
+// An observer API implemented by classes which are interested
+// in browser child process events.
+class CONTENT_EXPORT BrowserChildProcessObserver {
+ public:
+ // Called when a child process host has connected to a child process.
+ virtual void BrowserChildProcessHostConnected(const ChildProcessData& data) {}
+
+ // Called after a ChildProcessHost is disconnected from the child process.
+ virtual void BrowserChildProcessHostDisconnected(
+ const ChildProcessData& data) {}
+
+ // Called when a child process disappears unexpectedly as a result of a crash.
+ virtual void BrowserChildProcessCrashed(const ChildProcessData& data) {}
+
+ // Called when an instance of a particular child is created in a page. If one
+ // page contains several regions rendered by the same child, this will be
+ // called once for each region during the page load.
+ virtual void BrowserChildProcessInstanceCreated(
+ const ChildProcessData& data) {}
+
+ protected:
+ // The observer can be destroyed on any thread.
+ virtual ~BrowserChildProcessObserver() {}
+
+ static void Add(BrowserChildProcessObserver* observer);
+ static void Remove(BrowserChildProcessObserver* observer);
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_OBSERVER_H_
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/browser_child_process_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698