| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_SERVICES_GCM_FAKE_GCM_PROFILE_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_GCM_FAKE_GCM_PROFILE_SERVICE_H_ |
| 6 #define CHROME_BROWSER_SERVICES_GCM_FAKE_GCM_PROFILE_SERVICE_H_ | 6 #define CHROME_BROWSER_GCM_FAKE_GCM_PROFILE_SERVICE_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "components/gcm_driver/gcm_driver.h" | 13 #include "components/gcm_driver/gcm_driver.h" |
| 14 #include "components/gcm_driver/gcm_profile_service.h" | 14 #include "components/gcm_driver/gcm_profile_service.h" |
| 15 | 15 |
| 16 class Profile; | 16 class Profile; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 std::list<GCMClient::Result> unregister_responses_; | 79 std::list<GCMClient::Result> unregister_responses_; |
| 80 OutgoingMessage last_sent_message_; | 80 OutgoingMessage last_sent_message_; |
| 81 std::string last_receiver_id_; | 81 std::string last_receiver_id_; |
| 82 UnregisterCallback unregister_callback_; | 82 UnregisterCallback unregister_callback_; |
| 83 | 83 |
| 84 DISALLOW_COPY_AND_ASSIGN(FakeGCMProfileService); | 84 DISALLOW_COPY_AND_ASSIGN(FakeGCMProfileService); |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 } // namespace gcm | 87 } // namespace gcm |
| 88 | 88 |
| 89 #endif // CHROME_BROWSER_SERVICES_GCM_FAKE_GCM_PROFILE_SERVICE_H_ | 89 #endif // CHROME_BROWSER_GCM_FAKE_GCM_PROFILE_SERVICE_H_ |
| OLD | NEW |