OLD | NEW |
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 <string> | 5 #include <string> |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "chrome/browser/ui/browser.h" | 23 #include "chrome/browser/ui/browser.h" |
24 #include "chrome/common/chrome_constants.h" | 24 #include "chrome/common/chrome_constants.h" |
25 #include "chrome/common/chrome_notification_types.h" | 25 #include "chrome/common/chrome_notification_types.h" |
26 #include "chrome/common/chrome_paths.h" | 26 #include "chrome/common/chrome_paths.h" |
27 #include "chrome/common/chrome_switches.h" | 27 #include "chrome/common/chrome_switches.h" |
28 #include "chrome/common/pref_names.h" | 28 #include "chrome/common/pref_names.h" |
29 #include "chrome/test/base/testing_browser_process.h" | 29 #include "chrome/test/base/testing_browser_process.h" |
30 #include "chrome/test/base/testing_pref_service.h" | 30 #include "chrome/test/base/testing_pref_service.h" |
31 #include "chrome/test/base/testing_profile.h" | 31 #include "chrome/test/base/testing_profile.h" |
32 #include "content/public/browser/notification_service.h" | 32 #include "content/public/browser/notification_service.h" |
33 #include "content/test/test_browser_thread.h" | 33 #include "content/public/test/test_browser_thread.h" |
34 #include "testing/gmock/include/gmock/gmock.h" | 34 #include "testing/gmock/include/gmock/gmock.h" |
35 #include "testing/gtest/include/gtest/gtest.h" | 35 #include "testing/gtest/include/gtest/gtest.h" |
36 | 36 |
37 #if defined(OS_CHROMEOS) | 37 #if defined(OS_CHROMEOS) |
38 #include "chrome/browser/chromeos/cros/cros_library.h" | 38 #include "chrome/browser/chromeos/cros/cros_library.h" |
39 #endif | 39 #endif |
40 | 40 |
41 using content::BrowserThread; | 41 using content::BrowserThread; |
42 | 42 |
43 namespace { | 43 namespace { |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
548 browser2b.reset(); | 548 browser2b.reset(); |
549 last_opened_profiles = profile_manager->GetLastOpenedProfiles(); | 549 last_opened_profiles = profile_manager->GetLastOpenedProfiles(); |
550 ASSERT_EQ(1U, last_opened_profiles.size()); | 550 ASSERT_EQ(1U, last_opened_profiles.size()); |
551 EXPECT_EQ(profile1, last_opened_profiles[0]); | 551 EXPECT_EQ(profile1, last_opened_profiles[0]); |
552 | 552 |
553 browser1.reset(); | 553 browser1.reset(); |
554 last_opened_profiles = profile_manager->GetLastOpenedProfiles(); | 554 last_opened_profiles = profile_manager->GetLastOpenedProfiles(); |
555 ASSERT_EQ(0U, last_opened_profiles.size()); | 555 ASSERT_EQ(0U, last_opened_profiles.size()); |
556 } | 556 } |
557 #endif // !defined(OS_ANDROID) | 557 #endif // !defined(OS_ANDROID) |
OLD | NEW |