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

Unified Diff: content/public/browser/graph/browser_context_dependency_visitor.h

Issue 18796007: Content API changes to integrate base/graph. (Closed) Base URL: marinoni.mon:/usr/local/google/src/chromium/src@base_graph_review
Patch Set: Created 7 years, 5 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
Index: content/public/browser/graph/browser_context_dependency_visitor.h
diff --git a/content/public/browser/graph/browser_context_dependency_visitor.h b/content/public/browser/graph/browser_context_dependency_visitor.h
new file mode 100644
index 0000000000000000000000000000000000000000..77b706a2c632c9cb4503c7288fd25e5095013785
--- /dev/null
+++ b/content/public/browser/graph/browser_context_dependency_visitor.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_PUBLIC_BROWSER_GRAPH_BROWSER_CONTEXT_DEPENDENCY_VISITOR_H_
+#define CONTENT_PUBLIC_BROWSER_GRAPH_BROWSER_CONTEXT_DEPENDENCY_VISITOR_H_
+
+namespace graph {
+class DependencyManagerInstance;
+} // namespace graph
+
+namespace content {
+
+class BrowserContextDependencyVisitor {
+ public:
+ virtual ~BrowserContextDependencyVisitor() {}
+
+ virtual void Visit(graph::DependencyManagerInstance* dependency_manager) = 0;
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_GRAPH_BROWSER_CONTEXT_DEPENDENCY_VISITOR_H_

Powered by Google App Engine
This is Rietveld 408576698