| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_DEVTOOLS_DEVICE_WEBRTC_WEBRTC_DEVICE_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_WEBRTC_DEVICE_PROVIDER_H_ |
| 6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_WEBRTC_DEVICE_PROVIDER_H_ | 6 #define CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_WEBRTC_DEVICE_PROVIDER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "chrome/browser/devtools/device/android_device_manager.h" | 9 #include "chrome/browser/devtools/device/android_device_manager.h" |
| 9 #include "content/public/browser/web_ui_controller.h" | 10 #include "content/public/browser/web_ui_controller.h" |
| 10 | 11 |
| 11 namespace content { | 12 namespace content { |
| 12 class WebUI; | 13 class WebUI; |
| 13 } | 14 } |
| 14 | 15 |
| 15 class DevToolsBridgeClient; | 16 class DevToolsBridgeClient; |
| 16 class OAuth2TokenService; | 17 class OAuth2TokenService; |
| 17 class Profile; | 18 class Profile; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 50 |
| 50 private: | 51 private: |
| 51 ~WebRTCDeviceProvider() override; | 52 ~WebRTCDeviceProvider() override; |
| 52 | 53 |
| 53 const base::WeakPtr<DevToolsBridgeClient> client_; | 54 const base::WeakPtr<DevToolsBridgeClient> client_; |
| 54 | 55 |
| 55 DISALLOW_COPY_AND_ASSIGN(WebRTCDeviceProvider); | 56 DISALLOW_COPY_AND_ASSIGN(WebRTCDeviceProvider); |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_WEBRTC_DEVICE_PROVIDER_H_ | 59 #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_WEBRTC_WEBRTC_DEVICE_PROVIDER_H_ |
| OLD | NEW |