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

Unified Diff: chrome/browser/password_manager/password_store_win_unittest.cc

Issue 11359217: Move scoped_temp_dir from base to base/files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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: chrome/browser/password_manager/password_store_win_unittest.cc
diff --git a/chrome/browser/password_manager/password_store_win_unittest.cc b/chrome/browser/password_manager/password_store_win_unittest.cc
index e75861fe7d77e5f95820a0ceccec02594a9a05f4..02563f8e58f94ad61c508ccaa26383328b233652 100644
--- a/chrome/browser/password_manager/password_store_win_unittest.cc
+++ b/chrome/browser/password_manager/password_store_win_unittest.cc
@@ -3,15 +3,15 @@
// found in the LICENSE file.
#include <windows.h>
+#include <wincrypt.h>
#include <string>
#include <vector>
-#include <wincrypt.h>
#include "base/bind.h"
#include "base/bind_helpers.h"
+#include "base/files/scoped_temp_dir.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop.h"
-#include "base/scoped_temp_dir.h"
#include "base/stl_util.h"
#include "base/synchronization/waitable_event.h"
#include "base/time.h"
@@ -140,7 +140,7 @@ class PasswordStoreWinTest : public testing::Test {
scoped_ptr<TestingProfile> profile_;
scoped_refptr<WebDataService> wds_;
scoped_refptr<PasswordStore> store_;
- ScopedTempDir temp_dir_;
+ base::ScopedTempDir temp_dir_;
};
ACTION(STLDeleteElements0) {

Powered by Google App Engine
This is Rietveld 408576698