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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_PUBLIC_BROWSER_GRAPH_BROWSER_CONTEXT_DEPENDENCY_VISITOR_H_
6 #define CONTENT_PUBLIC_BROWSER_GRAPH_BROWSER_CONTEXT_DEPENDENCY_VISITOR_H_
7
8 namespace graph {
9 class DependencyManagerInstance;
10 } // namespace graph
11
12 namespace content {
13
14 class BrowserContextDependencyVisitor {
15 public:
16 virtual ~BrowserContextDependencyVisitor() {}
17
18 virtual void Visit(graph::DependencyManagerInstance* dependency_manager) = 0;
19 };
20
21 } // namespace content
22
23 #endif // CONTENT_PUBLIC_BROWSER_GRAPH_BROWSER_CONTEXT_DEPENDENCY_VISITOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698