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

Unified Diff: content/common/string_constants.h

Issue 10827078: Support frame tree propagation between renderers in the same browsing instance. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved away from hardcoded strings and no static cast needed for tests. Created 8 years, 4 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/common/string_constants.h
diff --git a/content/common/string_constants.h b/content/common/string_constants.h
new file mode 100644
index 0000000000000000000000000000000000000000..7b59a67db13833f5dd485055d34b609f22acf77e
--- /dev/null
+++ b/content/common/string_constants.h
@@ -0,0 +1,16 @@
+// Copyright (c) 2012 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_COMMON_STRING_CONSTANTS_H_
awong 2012/08/21 19:27:28 string_constants is too generic. We should name i
nasko 2012/08/21 22:24:13 Done.
+#define CONTENT_COMMON_STRING_CONSTANTS_H_
+
+namespace content {
+
+extern const char kFrameTreeNodeNameKey[];
awong 2012/08/21 19:27:28 Add comment referring to location that describes w
nasko 2012/08/21 22:24:13 Done.
+extern const char kFrameTreeNodeIdKey[];
+extern const char kFrameTreeNodeSubtreeKey[];
+
+} // namespace content
+
+#endif // CONTENT_COMMON_STRING_CONSTANTS_H_

Powered by Google App Engine
This is Rietveld 408576698