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

Unified Diff: base/memory/scoped_native_library_unittest.cc

Issue 7048007: Move scoped_temp_dir and scoped_native_library back from base/memory to base. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unknwn Created 9 years, 7 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
« no previous file with comments | « base/memory/scoped_native_library.cc ('k') | base/memory/scoped_temp_dir.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/memory/scoped_native_library_unittest.cc
diff --git a/base/memory/scoped_native_library_unittest.cc b/base/memory/scoped_native_library_unittest.cc
deleted file mode 100644
index 0cc60e26a796379dff3a6414bde15fc48acb0bd8..0000000000000000000000000000000000000000
--- a/base/memory/scoped_native_library_unittest.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "base/memory/scoped_native_library.h"
-#if defined(OS_WIN)
-#include "base/file_path.h"
-#endif
-
-#include "testing/gtest/include/gtest/gtest.h"
-
-// Tests whether or not a function pointer retrieved via ScopedNativeLibrary
-// is available only in a scope.
-TEST(ScopedNativeLibrary, Basic) {
-#if defined(OS_WIN)
- // Get the pointer to DirectDrawCreate() from "ddraw.dll" and verify it
- // is valid only in this scope.
- // FreeLibrary() doesn't actually unload a DLL until its reference count
- // becomes zero, i.e. this function pointer is still valid if the DLL used
- // in this test is also used by another part of this executable.
- // So, this test uses "ddraw.dll", which is not used by Chrome at all but
- // installed on all versions of Windows.
- FARPROC test_function;
- {
- FilePath path(base::GetNativeLibraryName(L"ddraw"));
- base::ScopedNativeLibrary library(path);
- test_function = reinterpret_cast<FARPROC>(
- library.GetFunctionPointer("DirectDrawCreate"));
- EXPECT_EQ(0, IsBadCodePtr(test_function));
- }
- EXPECT_NE(0, IsBadCodePtr(test_function));
-#endif
-}
« no previous file with comments | « base/memory/scoped_native_library.cc ('k') | base/memory/scoped_temp_dir.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698