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 #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 | |
8 | 7 |
9 #include "chrome/browser/sync/glue/change_processor.h" | 8 #include "chrome/browser/sync/glue/change_processor.h" |
10 | 9 |
11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
12 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
13 #include "chrome/browser/sync/glue/data_type_error_handler.h" | 12 #include "chrome/browser/sync/glue/data_type_error_handler.h" |
14 #include "chrome/browser/sync/glue/password_model_associator.h" | 13 #include "chrome/browser/sync/glue/password_model_associator.h" |
15 #include "chrome/browser/sync/glue/sync_backend_host.h" | 14 #include "chrome/browser/sync/glue/sync_backend_host.h" |
16 #include "content/public/browser/notification_observer.h" | 15 #include "content/public/browser/notification_observer.h" |
17 #include "content/public/browser/notification_registrar.h" | 16 #include "content/public/browser/notification_registrar.h" |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 bool observing_; | 80 bool observing_; |
82 | 81 |
83 MessageLoop* expected_loop_; | 82 MessageLoop* expected_loop_; |
84 | 83 |
85 DISALLOW_COPY_AND_ASSIGN(PasswordChangeProcessor); | 84 DISALLOW_COPY_AND_ASSIGN(PasswordChangeProcessor); |
86 }; | 85 }; |
87 | 86 |
88 } // namespace browser_sync | 87 } // namespace browser_sync |
89 | 88 |
90 #endif // CHROME_BROWSER_SYNC_GLUE_PASSWORD_CHANGE_PROCESSOR_H_ | 89 #endif // CHROME_BROWSER_SYNC_GLUE_PASSWORD_CHANGE_PROCESSOR_H_ |
OLD | NEW |