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

Side by Side Diff: chrome/browser/profiles/profile_manager_unittest.cc

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include <stddef.h>
6
5 #include <string> 7 #include <string>
6 8
7 #include "base/command_line.h" 9 #include "base/command_line.h"
8 #include "base/files/file_util.h" 10 #include "base/files/file_util.h"
9 #include "base/files/scoped_temp_dir.h" 11 #include "base/files/scoped_temp_dir.h"
12 #include "base/macros.h"
10 #include "base/run_loop.h" 13 #include "base/run_loop.h"
11 #include "base/strings/utf_string_conversions.h" 14 #include "base/strings/utf_string_conversions.h"
12 #include "base/values.h" 15 #include "base/values.h"
13 #include "build/build_config.h" 16 #include "build/build_config.h"
14 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 17 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
15 #include "chrome/browser/browser_process.h" 18 #include "chrome/browser/browser_process.h"
16 #include "chrome/browser/chrome_notification_types.h" 19 #include "chrome/browser/chrome_notification_types.h"
17 #include "chrome/browser/chromeos/settings/cros_settings.h" 20 #include "chrome/browser/chromeos/settings/cros_settings.h"
18 #include "chrome/browser/history/history_service_factory.h" 21 #include "chrome/browser/history/history_service_factory.h"
19 #include "chrome/browser/io_thread.h" 22 #include "chrome/browser/io_thread.h"
(...skipping 1320 matching lines...) Expand 10 before | Expand all | Expand 10 after
1340 dest_path2.BaseName().MaybeAsASCII()); 1343 dest_path2.BaseName().MaybeAsASCII());
1341 profile_manager->ScheduleProfileForDeletion(dest_path2, 1344 profile_manager->ScheduleProfileForDeletion(dest_path2,
1342 ProfileManager::CreateCallback()); 1345 ProfileManager::CreateCallback());
1343 // Spin the message loop so that all the callbacks can finish running. 1346 // Spin the message loop so that all the callbacks can finish running.
1344 base::RunLoop().RunUntilIdle(); 1347 base::RunLoop().RunUntilIdle();
1345 1348
1346 EXPECT_EQ(dest_path3, profile_manager->GetLastUsedProfile()->GetPath()); 1349 EXPECT_EQ(dest_path3, profile_manager->GetLastUsedProfile()->GetPath());
1347 EXPECT_EQ(profile_name3, local_state->GetString(prefs::kProfileLastUsed)); 1350 EXPECT_EQ(profile_name3, local_state->GetString(prefs::kProfileLastUsed));
1348 } 1351 }
1349 #endif // !defined(OS_MACOSX) 1352 #endif // !defined(OS_MACOSX)
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_manager_browsertest.cc ('k') | chrome/browser/profiles/profile_metrics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698