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

Unified Diff: base/memory/scoped_native_library_unittest.cc

Issue 6714032: Move some files in base to base/memory. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: only base Created 9 years, 9 months 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
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"));

Powered by Google App Engine
This is Rietveld 408576698