| 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 #include "content/public/browser/web_contents_delegate.h" | 5 #include "content/public/browser/web_contents_delegate.h" |
| 6 | 6 |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 WebContents* source) { | 154 WebContents* source) { |
| 155 return nullptr; | 155 return nullptr; |
| 156 } | 156 } |
| 157 | 157 |
| 158 std::unique_ptr<BluetoothChooser> WebContentsDelegate::RunBluetoothChooser( | 158 std::unique_ptr<BluetoothChooser> WebContentsDelegate::RunBluetoothChooser( |
| 159 RenderFrameHost* frame, | 159 RenderFrameHost* frame, |
| 160 const BluetoothChooser::EventHandler& event_handler) { | 160 const BluetoothChooser::EventHandler& event_handler) { |
| 161 return nullptr; | 161 return nullptr; |
| 162 } | 162 } |
| 163 | 163 |
| 164 BluetoothAllowedDevicesMapBase* WebContentsDelegate::GetBluetoothDevicesMap( |
| 165 RenderFrameHost* frame) { |
| 166 return nullptr; |
| 167 } |
| 168 |
| 164 bool WebContentsDelegate::EmbedsFullscreenWidget() const { | 169 bool WebContentsDelegate::EmbedsFullscreenWidget() const { |
| 165 return false; | 170 return false; |
| 166 } | 171 } |
| 167 | 172 |
| 168 bool WebContentsDelegate::IsFullscreenForTabOrPending( | 173 bool WebContentsDelegate::IsFullscreenForTabOrPending( |
| 169 const WebContents* web_contents) const { | 174 const WebContents* web_contents) const { |
| 170 return false; | 175 return false; |
| 171 } | 176 } |
| 172 | 177 |
| 173 blink::WebDisplayMode WebContentsDelegate::GetDisplayMode( | 178 blink::WebDisplayMode WebContentsDelegate::GetDisplayMode( |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 void WebContentsDelegate::ShowCertificateViewerInDevTools( | 277 void WebContentsDelegate::ShowCertificateViewerInDevTools( |
| 273 WebContents* web_contents, | 278 WebContents* web_contents, |
| 274 scoped_refptr<net::X509Certificate> certificate) { | 279 scoped_refptr<net::X509Certificate> certificate) { |
| 275 } | 280 } |
| 276 | 281 |
| 277 void WebContentsDelegate::RequestAppBannerFromDevTools( | 282 void WebContentsDelegate::RequestAppBannerFromDevTools( |
| 278 content::WebContents* web_contents) { | 283 content::WebContents* web_contents) { |
| 279 } | 284 } |
| 280 | 285 |
| 281 } // namespace content | 286 } // namespace content |
| OLD | NEW |