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

Unified Diff: base/property_bag.cc

Issue 8652002: Move PropertyBag to base. Originally this was in chrome\common because only chrome used it. Now t... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: move to base namespace and forward declare where possible Created 9 years, 1 month 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 | « base/property_bag.h ('k') | base/property_bag_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/property_bag.cc
===================================================================
--- base/property_bag.cc (revision 111170)
+++ base/property_bag.cc (working copy)
@@ -2,9 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "base/property_bag.h"
+
#include "base/memory/linked_ptr.h"
-#include "content/common/property_bag.h"
+namespace base {
+
PropertyBag::PropertyBag() {
}
@@ -54,3 +57,5 @@
static PropertyBag::PropID next_id = 1;
prop_id_ = next_id++;
}
+
+} // namespace base
« no previous file with comments | « base/property_bag.h ('k') | base/property_bag_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698