| 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 #ifndef CHROME_BROWSER_SYNC_GLUE_PASSWORD_CHANGE_PROCESSOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_PASSWORD_CHANGE_PROCESSOR_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_PASSWORD_CHANGE_PROCESSOR_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_PASSWORD_CHANGE_PROCESSOR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/sync/glue/change_processor.h" | 9 #include "chrome/browser/sync/glue/change_processor.h" |
| 10 | 10 |
| 11 #include <vector> | |
| 12 | |
| 13 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 14 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
| 15 #include "chrome/browser/sync/glue/sync_backend_host.h" | 13 #include "chrome/browser/sync/glue/sync_backend_host.h" |
| 16 #include "chrome/common/notification_observer.h" | 14 #include "chrome/common/notification_observer.h" |
| 17 #include "chrome/common/notification_registrar.h" | 15 #include "chrome/common/notification_registrar.h" |
| 18 #include "chrome/common/notification_type.h" | 16 #include "chrome/common/notification_type.h" |
| 19 | 17 |
| 20 class PasswordStore; | 18 class PasswordStore; |
| 21 class MessageLoop; | 19 class MessageLoop; |
| 22 class NotificationService; | 20 class NotificationService; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 bool observing_; | 69 bool observing_; |
| 72 | 70 |
| 73 MessageLoop* expected_loop_; | 71 MessageLoop* expected_loop_; |
| 74 | 72 |
| 75 DISALLOW_COPY_AND_ASSIGN(PasswordChangeProcessor); | 73 DISALLOW_COPY_AND_ASSIGN(PasswordChangeProcessor); |
| 76 }; | 74 }; |
| 77 | 75 |
| 78 } // namespace browser_sync | 76 } // namespace browser_sync |
| 79 | 77 |
| 80 #endif // CHROME_BROWSER_SYNC_GLUE_PASSWORD_CHANGE_PROCESSOR_H_ | 78 #endif // CHROME_BROWSER_SYNC_GLUE_PASSWORD_CHANGE_PROCESSOR_H_ |
| OLD | NEW |