| 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 CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 void ShowCreatedFullscreenWidget(int route_id) override; | 467 void ShowCreatedFullscreenWidget(int route_id) override; |
| 468 void RequestMediaAccessPermission( | 468 void RequestMediaAccessPermission( |
| 469 const MediaStreamRequest& request, | 469 const MediaStreamRequest& request, |
| 470 const MediaResponseCallback& callback) override; | 470 const MediaResponseCallback& callback) override; |
| 471 bool CheckMediaAccessPermission(const GURL& security_origin, | 471 bool CheckMediaAccessPermission(const GURL& security_origin, |
| 472 MediaStreamType type) override; | 472 MediaStreamType type) override; |
| 473 SessionStorageNamespace* GetSessionStorageNamespace( | 473 SessionStorageNamespace* GetSessionStorageNamespace( |
| 474 SiteInstance* instance) override; | 474 SiteInstance* instance) override; |
| 475 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override; | 475 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override; |
| 476 FrameTree* GetFrameTree() override; | 476 FrameTree* GetFrameTree() override; |
| 477 void SetIsVirtualKeyboardRequested(bool requested) override; |
| 478 bool IsVirtualKeyboardRequested() override; |
| 479 |
| 477 | 480 |
| 478 // NavigatorDelegate --------------------------------------------------------- | 481 // NavigatorDelegate --------------------------------------------------------- |
| 479 | 482 |
| 480 void DidStartProvisionalLoad(RenderFrameHostImpl* render_frame_host, | 483 void DidStartProvisionalLoad(RenderFrameHostImpl* render_frame_host, |
| 481 const GURL& validated_url, | 484 const GURL& validated_url, |
| 482 bool is_error_page, | 485 bool is_error_page, |
| 483 bool is_iframe_srcdoc) override; | 486 bool is_iframe_srcdoc) override; |
| 484 void DidStartNavigationTransition( | 487 void DidStartNavigationTransition( |
| 485 RenderFrameHostImpl* render_frame_host) override; | 488 RenderFrameHostImpl* render_frame_host) override; |
| 486 void DidFailProvisionalLoadWithError( | 489 void DidFailProvisionalLoadWithError( |
| (...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1225 AccessibilityMode accessibility_mode_; | 1228 AccessibilityMode accessibility_mode_; |
| 1226 | 1229 |
| 1227 // Monitors power levels for audio streams associated with this WebContents. | 1230 // Monitors power levels for audio streams associated with this WebContents. |
| 1228 AudioStreamMonitor audio_stream_monitor_; | 1231 AudioStreamMonitor audio_stream_monitor_; |
| 1229 | 1232 |
| 1230 // Created on-demand to mute all audio output from this WebContents. | 1233 // Created on-demand to mute all audio output from this WebContents. |
| 1231 scoped_ptr<WebContentsAudioMuter> audio_muter_; | 1234 scoped_ptr<WebContentsAudioMuter> audio_muter_; |
| 1232 | 1235 |
| 1233 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; | 1236 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; |
| 1234 | 1237 |
| 1238 bool virtual_keyboard_requested_; |
| 1239 |
| 1235 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1240 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1236 }; | 1241 }; |
| 1237 | 1242 |
| 1238 } // namespace content | 1243 } // namespace content |
| 1239 | 1244 |
| 1240 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1245 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |