OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_PROXIMITY_AUTH_WEBUI_PROXIMITY_AUTH_WEBUI_HANDLER_H_ | 5 #ifndef COMPONENTS_PROXIMITY_AUTH_WEBUI_PROXIMITY_AUTH_WEBUI_HANDLER_H_ |
6 #define COMPONENTS_PROXIMITY_AUTH_WEBUI_PROXIMITY_AUTH_WEBUI_HANDLER_H_ | 6 #define COMPONENTS_PROXIMITY_AUTH_WEBUI_PROXIMITY_AUTH_WEBUI_HANDLER_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
| 11 #include "components/cryptauth/connection_observer.h" |
11 #include "components/cryptauth/cryptauth_client.h" | 12 #include "components/cryptauth/cryptauth_client.h" |
12 #include "components/cryptauth/cryptauth_device_manager.h" | 13 #include "components/cryptauth/cryptauth_device_manager.h" |
13 #include "components/cryptauth/cryptauth_enrollment_manager.h" | 14 #include "components/cryptauth/cryptauth_enrollment_manager.h" |
14 #include "components/cryptauth/cryptauth_gcm_manager.h" | 15 #include "components/cryptauth/cryptauth_gcm_manager.h" |
15 #include "components/proximity_auth/authenticator.h" | 16 #include "components/proximity_auth/authenticator.h" |
16 #include "components/proximity_auth/connection_observer.h" | |
17 #include "components/proximity_auth/logging/log_buffer.h" | 17 #include "components/proximity_auth/logging/log_buffer.h" |
18 #include "components/proximity_auth/messenger_observer.h" | 18 #include "components/proximity_auth/messenger_observer.h" |
19 #include "components/proximity_auth/proximity_auth_client.h" | 19 #include "components/proximity_auth/proximity_auth_client.h" |
20 #include "components/proximity_auth/remote_device_life_cycle.h" | 20 #include "components/proximity_auth/remote_device_life_cycle.h" |
21 #include "content/public/browser/web_ui_message_handler.h" | 21 #include "content/public/browser/web_ui_message_handler.h" |
22 | 22 |
23 namespace base { | 23 namespace base { |
24 class ListValue; | 24 class ListValue; |
25 } | 25 } |
26 | 26 |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 std::unique_ptr<RemoteStatusUpdate> last_remote_status_update_; | 154 std::unique_ptr<RemoteStatusUpdate> last_remote_status_update_; |
155 | 155 |
156 base::WeakPtrFactory<ProximityAuthWebUIHandler> weak_ptr_factory_; | 156 base::WeakPtrFactory<ProximityAuthWebUIHandler> weak_ptr_factory_; |
157 | 157 |
158 DISALLOW_COPY_AND_ASSIGN(ProximityAuthWebUIHandler); | 158 DISALLOW_COPY_AND_ASSIGN(ProximityAuthWebUIHandler); |
159 }; | 159 }; |
160 | 160 |
161 } // namespace proximity_auth | 161 } // namespace proximity_auth |
162 | 162 |
163 #endif // COMPONENTS_PROXIMITY_AUTH_WEBUI_PROXIMITY_AUTH_WEBUI_HANDLER_H_ | 163 #endif // COMPONENTS_PROXIMITY_AUTH_WEBUI_PROXIMITY_AUTH_WEBUI_HANDLER_H_ |
OLD | NEW |