| Index: base/win/scoped_comptr_unittest.cc
|
| ===================================================================
|
| --- base/win/scoped_comptr_unittest.cc (revision 62694)
|
| +++ base/win/scoped_comptr_unittest.cc (working copy)
|
| @@ -2,13 +2,16 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "base/scoped_comptr_win.h"
|
| +#include "base/win/scoped_comptr.h"
|
|
|
| #include <shlobj.h>
|
|
|
| #include "base/scoped_ptr.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
|
|
| +namespace base {
|
| +namespace win {
|
| +
|
| namespace {
|
|
|
| struct Dummy {
|
| @@ -105,3 +108,6 @@
|
| EXPECT_EQ(p->adds, 4);
|
| EXPECT_EQ(p->releases, 4);
|
| }
|
| +
|
| +} // namespace win
|
| +} // namespace base
|
|
|