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

Unified Diff: base/property_bag_unittest.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.cc ('k') | chrome/browser/extensions/extension_omnibox_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/property_bag_unittest.cc
===================================================================
--- base/property_bag_unittest.cc (revision 111170)
+++ base/property_bag_unittest.cc (working copy)
@@ -2,9 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/common/property_bag.h"
+#include "base/property_bag.h"
#include "testing/gtest/include/gtest/gtest.h"
+namespace base {
+
TEST(PropertyBagTest, AddQueryRemove) {
PropertyBag bag;
PropertyAccessor<int> adaptor;
@@ -60,3 +62,5 @@
EXPECT_TRUE(adaptor1.GetProperty(&copy) == NULL);
EXPECT_TRUE(adaptor2.GetProperty(&copy) == NULL);
}
+
+} // namespace base
« no previous file with comments | « base/property_bag.cc ('k') | chrome/browser/extensions/extension_omnibox_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698