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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 int32 page_id, | 379 int32 page_id, |
380 const base::string16& title, | 380 const base::string16& title, |
381 base::i18n::TextDirection title_direction) OVERRIDE; | 381 base::i18n::TextDirection title_direction) OVERRIDE; |
382 virtual void UpdateEncoding(RenderFrameHost* render_frame_host, | 382 virtual void UpdateEncoding(RenderFrameHost* render_frame_host, |
383 const std::string& encoding) OVERRIDE; | 383 const std::string& encoding) OVERRIDE; |
384 virtual WebContents* GetAsWebContents() OVERRIDE; | 384 virtual WebContents* GetAsWebContents() OVERRIDE; |
385 virtual bool IsNeverVisible() OVERRIDE; | 385 virtual bool IsNeverVisible() OVERRIDE; |
386 virtual AccessibilityMode GetAccessibilityMode() const OVERRIDE; | 386 virtual AccessibilityMode GetAccessibilityMode() const OVERRIDE; |
387 virtual void AccessibilityEventReceived( | 387 virtual void AccessibilityEventReceived( |
388 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; | 388 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; |
| 389 virtual RenderFrameHost* GetGuestByInstanceID(int browser_plugin_instance_id) |
| 390 OVERRIDE; |
389 #if defined(OS_WIN) | 391 #if defined(OS_WIN) |
390 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; | 392 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; |
391 #endif | 393 #endif |
392 | 394 |
393 // RenderViewHostDelegate ---------------------------------------------------- | 395 // RenderViewHostDelegate ---------------------------------------------------- |
394 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; | 396 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; |
395 virtual bool OnMessageReceived(RenderViewHost* render_view_host, | 397 virtual bool OnMessageReceived(RenderViewHost* render_view_host, |
396 const IPC::Message& message) OVERRIDE; | 398 const IPC::Message& message) OVERRIDE; |
397 // RenderFrameHostDelegate has the same method, so list it there because this | 399 // RenderFrameHostDelegate has the same method, so list it there because this |
398 // interface is going away. | 400 // interface is going away. |
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1234 | 1236 |
1235 // Monitors power levels for audio streams associated with this WebContents. | 1237 // Monitors power levels for audio streams associated with this WebContents. |
1236 AudioStreamMonitor audio_stream_monitor_; | 1238 AudioStreamMonitor audio_stream_monitor_; |
1237 | 1239 |
1238 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1240 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1239 }; | 1241 }; |
1240 | 1242 |
1241 } // namespace content | 1243 } // namespace content |
1242 | 1244 |
1243 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1245 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |