OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/test/testing_profile.h" | 5 #include "chrome/test/testing_profile.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 #include "base/message_loop_proxy.h" | 9 #include "base/message_loop_proxy.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "chrome/common/url_constants.h" | 11 #include "chrome/common/url_constants.h" |
12 #include "chrome/browser/bookmarks/bookmark_model.h" | 12 #include "chrome/browser/bookmarks/bookmark_model.h" |
13 #include "chrome/browser/dom_ui/ntp_resource_cache.h" | 13 #include "chrome/browser/dom_ui/ntp_resource_cache.h" |
14 #include "chrome/browser/history/history_backend.h" | 14 #include "chrome/browser/history/history_backend.h" |
| 15 #include "chrome/browser/net/gaia/token_service.h" |
15 #include "chrome/browser/sessions/session_service.h" | 16 #include "chrome/browser/sessions/session_service.h" |
16 #include "chrome/browser/sync/profile_sync_service_mock.h" | 17 #include "chrome/browser/sync/profile_sync_service_mock.h" |
17 #include "chrome/common/chrome_constants.h" | 18 #include "chrome/common/chrome_constants.h" |
18 #include "chrome/common/net/url_request_context_getter.h" | 19 #include "chrome/common/net/url_request_context_getter.h" |
19 #include "chrome/common/notification_service.h" | 20 #include "chrome/common/notification_service.h" |
20 #include "net/url_request/url_request_context.h" | 21 #include "net/url_request/url_request_context.h" |
21 #include "testing/gmock/include/gmock/gmock.h" | 22 #include "testing/gmock/include/gmock/gmock.h" |
22 #include "webkit/database/database_tracker.h" | 23 #include "webkit/database/database_tracker.h" |
23 | 24 |
24 #if defined(OS_LINUX) && !defined(TOOLKIT_VIEWS) | 25 #if defined(OS_LINUX) && !defined(TOOLKIT_VIEWS) |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 | 332 |
332 void TestingProfile::BlockUntilHistoryProcessesPendingRequests() { | 333 void TestingProfile::BlockUntilHistoryProcessesPendingRequests() { |
333 DCHECK(history_service_.get()); | 334 DCHECK(history_service_.get()); |
334 DCHECK(MessageLoop::current()); | 335 DCHECK(MessageLoop::current()); |
335 | 336 |
336 CancelableRequestConsumer consumer; | 337 CancelableRequestConsumer consumer; |
337 history_service_->ScheduleDBTask(new QuittingHistoryDBTask(), &consumer); | 338 history_service_->ScheduleDBTask(new QuittingHistoryDBTask(), &consumer); |
338 MessageLoop::current()->Run(); | 339 MessageLoop::current()->Run(); |
339 } | 340 } |
340 | 341 |
| 342 TokenService* TestingProfile::GetTokenService() { |
| 343 if (!token_service_.get()) { |
| 344 token_service_.reset(new TokenService()); |
| 345 } |
| 346 return token_service_.get(); |
| 347 } |
| 348 |
341 ProfileSyncService* TestingProfile::GetProfileSyncService() { | 349 ProfileSyncService* TestingProfile::GetProfileSyncService() { |
342 if (!profile_sync_service_.get()) { | 350 if (!profile_sync_service_.get()) { |
343 // Use a NiceMock here since we are really using the mock as a | 351 // Use a NiceMock here since we are really using the mock as a |
344 // fake. Test cases that want to set expectations on a | 352 // fake. Test cases that want to set expectations on a |
345 // ProfileSyncService should use the ProfileMock and have this | 353 // ProfileSyncService should use the ProfileMock and have this |
346 // method return their own mock instance. | 354 // method return their own mock instance. |
347 profile_sync_service_.reset(new NiceMock<ProfileSyncServiceMock>()); | 355 profile_sync_service_.reset(new NiceMock<ProfileSyncServiceMock>()); |
348 } | 356 } |
349 return profile_sync_service_.get(); | 357 return profile_sync_service_.get(); |
350 } | 358 } |
351 | 359 |
352 void TestingProfile::DestroyWebDataService() { | 360 void TestingProfile::DestroyWebDataService() { |
353 if (!web_data_service_.get()) | 361 if (!web_data_service_.get()) |
354 return; | 362 return; |
355 | 363 |
356 web_data_service_->Shutdown(); | 364 web_data_service_->Shutdown(); |
357 } | 365 } |
OLD | NEW |