Chromium Code Reviews| Index: base/memory/scoped_native_library_unittest.cc |
| diff --git a/base/scoped_native_library_unittest.cc b/base/memory/scoped_native_library_unittest.cc |
| similarity index 91% |
| rename from base/scoped_native_library_unittest.cc |
| rename to base/memory/scoped_native_library_unittest.cc |
| index 567239dfa8eaa532cc7488709e9cbc9490d68131..67906b8b58c73cc6f2131f2871bb61eaaec7e6f8 100644 |
| --- a/base/scoped_native_library_unittest.cc |
| +++ b/base/memory/scoped_native_library_unittest.cc |
| @@ -2,7 +2,7 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "base/scoped_native_library.h" |
| +#include "base/memory/scoped_native_library.h" |
| #if defined(OS_WIN) |
| #include "base/file_path.h" |
| #endif |
| @@ -22,7 +22,7 @@ TEST(ScopedNativeLibrary, Basic) { |
| // installed on all versions of Windows. |
| FARPROC test_function; |
| { |
| - FilePath path(base::GetNativeLibraryName(L"ddraw")); |
| + FilePath path(base::::GetNativeLibraryName(L"ddraw")); |
|
brettw
2011/03/24 20:37:30
Delete ::
|
| base::ScopedNativeLibrary library(path); |
| test_function = reinterpret_cast<FARPROC>( |
| library.GetFunctionPointer("DirectDrawCreate")); |