Chromium Code Reviews| Index: chrome/test/testing_device_token_fetcher.cc |
| diff --git a/chrome/test/testing_device_token_fetcher.cc b/chrome/test/testing_device_token_fetcher.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..c185dd861abf8423b18d439cd47bd7654542a591 |
| --- /dev/null |
| +++ b/chrome/test/testing_device_token_fetcher.cc |
| @@ -0,0 +1,40 @@ |
| +// Copyright (c) 2010 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 "chrome/test/testing_device_token_fetcher.h" |
| + |
| +#include "chrome/browser/profile.h" |
| +#include "chrome/browser/policy/device_token_fetcher.h" |
|
Mattias Nissler (ping if slow)
2010/11/23 16:00:44
alphabetize.
gfeher
2010/11/24 19:38:40
Done.
|
| +#include "chrome/common/notification_service.h" |
| +#include "chrome/common/notification_source.h" |
| +#include "chrome/common/notification_type.h" |
| +#if defined(OS_CHROMEOS) |
|
Mattias Nissler (ping if slow)
2010/11/23 16:00:44
Put a newline before in order to establish this as
gfeher
2010/11/24 19:38:40
Done.
|
| +#include "chrome/browser/chromeos/login/user_manager.h" |
| +#else |
| +#include "chrome/browser/sync/signin_manager.h" |
| +#endif |
| + |
| +namespace policy { |
| + |
| +const char* kTestDasherDomainUsername = "___@example.com"; |
| + |
| +void TestingDeviceTokenFetcher::SimulateLogin(const std::string& username) { |
| + username_ = username; |
| +#if defined(OS_CHROMEOS) |
| + chromeos::UserManager::User user; |
| + user.set_email(username_); |
| + NotificationService::current()->Notify( |
| + NotificationType::LOGIN_USER_CHANGED, |
| + Source<chromeos::UserManager>(NULL), |
| + Details<const chromeos::UserManager::User>(&user)); |
| +#else |
| + GoogleServiceSigninSuccessDetails details(username_, ""); |
| + NotificationService::current()->Notify( |
| + NotificationType::GOOGLE_SIGNIN_SUCCESSFUL, |
| + Source<Profile>(profile_), |
| + Details<const GoogleServiceSigninSuccessDetails>(&details)); |
| +#endif |
| +} |
| + |
| +} // namespace policy |