| 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 CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 void DeleteWebBluetoothService( | 905 void DeleteWebBluetoothService( |
| 906 WebBluetoothServiceImpl* web_bluetooth_service); | 906 WebBluetoothServiceImpl* web_bluetooth_service); |
| 907 | 907 |
| 908 void BindMediaInterfaceFactoryRequest( | 908 void BindMediaInterfaceFactoryRequest( |
| 909 const service_manager::BindSourceInfo& source_info, | 909 const service_manager::BindSourceInfo& source_info, |
| 910 media::mojom::InterfaceFactoryRequest request); | 910 media::mojom::InterfaceFactoryRequest request); |
| 911 | 911 |
| 912 // Callback for connection error on the media::mojom::InterfaceFactory client. | 912 // Callback for connection error on the media::mojom::InterfaceFactory client. |
| 913 void OnMediaInterfaceFactoryConnectionError(); | 913 void OnMediaInterfaceFactoryConnectionError(); |
| 914 | 914 |
| 915 void BindWakeLockServiceRequest( | 915 void BindWakeLockRequest(const service_manager::BindSourceInfo& source_info, |
| 916 const service_manager::BindSourceInfo& source_info, | 916 device::mojom::WakeLockRequest request); |
| 917 device::mojom::WakeLockServiceRequest request); | |
| 918 | 917 |
| 919 #if defined(OS_ANDROID) | 918 #if defined(OS_ANDROID) |
| 920 void BindNFCRequest(const service_manager::BindSourceInfo& source_info, | 919 void BindNFCRequest(const service_manager::BindSourceInfo& source_info, |
| 921 device::mojom::NFCRequest request); | 920 device::mojom::NFCRequest request); |
| 922 #endif | 921 #endif |
| 923 | 922 |
| 924 // service_manager::mojom::InterfaceProvider: | 923 // service_manager::mojom::InterfaceProvider: |
| 925 void GetInterface(const std::string& interface_name, | 924 void GetInterface(const std::string& interface_name, |
| 926 mojo::ScopedMessagePipeHandle interface_pipe) override; | 925 mojo::ScopedMessagePipeHandle interface_pipe) override; |
| 927 | 926 |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1234 | 1233 |
| 1235 // NOTE: This must be the last member. | 1234 // NOTE: This must be the last member. |
| 1236 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1235 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1237 | 1236 |
| 1238 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1237 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1239 }; | 1238 }; |
| 1240 | 1239 |
| 1241 } // namespace content | 1240 } // namespace content |
| 1242 | 1241 |
| 1243 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1242 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |