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

Unified Diff: chrome/browser/profiles/dependency_node.h

Issue 13454032: Extract DependencyGraph from ProfileDependencyManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 7 years, 8 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: chrome/browser/profiles/dependency_node.h
diff --git a/chrome/browser/profiles/dependency_node.h b/chrome/browser/profiles/dependency_node.h
new file mode 100644
index 0000000000000000000000000000000000000000..bcae416c200a78219393ddb615bf67ec10dce907
--- /dev/null
+++ b/chrome/browser/profiles/dependency_node.h
@@ -0,0 +1,16 @@
+// Copyright 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 CHROME_BROWSER_PROFILES_DEPENDENCY_NODE_H_
+#define CHROME_BROWSER_PROFILES_DEPENDENCY_NODE_H_
+
+// Base class for use with DependencyGraph.
Jói 2013/04/14 23:13:20 suggest "Base class representing a node in a Depen
Paweł Hajdan Jr. 2013/04/15 19:07:40 Done.
+class DependencyNode {
+ protected:
+ // This is intended to be used by the subclass, not directly.
Jói 2013/04/14 15:36:02 nit: the subclass -> subclasses
Paweł Hajdan Jr. 2013/04/15 19:07:40 Done.
+ DependencyNode() {}
+ ~DependencyNode() {}
+};
+
+#endif // CHROME_BROWSER_PROFILES_DEPENDENCY_NODE_H_

Powered by Google App Engine
This is Rietveld 408576698