| 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(©) == NULL);
|
| EXPECT_TRUE(adaptor2.GetProperty(©) == NULL);
|
| }
|
| +
|
| +} // namespace base
|
|
|