| 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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 int32 page_id, | 377 int32 page_id, |
| 378 const base::string16& title, | 378 const base::string16& title, |
| 379 base::i18n::TextDirection title_direction) OVERRIDE; | 379 base::i18n::TextDirection title_direction) OVERRIDE; |
| 380 virtual void UpdateEncoding(RenderFrameHost* render_frame_host, | 380 virtual void UpdateEncoding(RenderFrameHost* render_frame_host, |
| 381 const std::string& encoding) OVERRIDE; | 381 const std::string& encoding) OVERRIDE; |
| 382 virtual WebContents* GetAsWebContents() OVERRIDE; | 382 virtual WebContents* GetAsWebContents() OVERRIDE; |
| 383 virtual bool IsNeverVisible() OVERRIDE; | 383 virtual bool IsNeverVisible() OVERRIDE; |
| 384 virtual AccessibilityMode GetAccessibilityMode() const OVERRIDE; | 384 virtual AccessibilityMode GetAccessibilityMode() const OVERRIDE; |
| 385 virtual void AccessibilityEventReceived( | 385 virtual void AccessibilityEventReceived( |
| 386 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; | 386 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; |
| 387 virtual RenderFrameHost* GetGuestByInstanceID(int browser_plugin_instance_id) |
| 388 OVERRIDE; |
| 387 #if defined(OS_WIN) | 389 #if defined(OS_WIN) |
| 388 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; | 390 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; |
| 389 #endif | 391 #endif |
| 390 | 392 |
| 391 // RenderViewHostDelegate ---------------------------------------------------- | 393 // RenderViewHostDelegate ---------------------------------------------------- |
| 392 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; | 394 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; |
| 393 virtual bool OnMessageReceived(RenderViewHost* render_view_host, | 395 virtual bool OnMessageReceived(RenderViewHost* render_view_host, |
| 394 const IPC::Message& message) OVERRIDE; | 396 const IPC::Message& message) OVERRIDE; |
| 395 // RenderFrameHostDelegate has the same method, so list it there because this | 397 // RenderFrameHostDelegate has the same method, so list it there because this |
| 396 // interface is going away. | 398 // interface is going away. |
| (...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1202 // The accessibility mode for all frames. This is queried when each frame | 1204 // The accessibility mode for all frames. This is queried when each frame |
| 1203 // is created, and broadcast to all frames when it changes. | 1205 // is created, and broadcast to all frames when it changes. |
| 1204 AccessibilityMode accessibility_mode_; | 1206 AccessibilityMode accessibility_mode_; |
| 1205 | 1207 |
| 1206 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1208 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 1207 }; | 1209 }; |
| 1208 | 1210 |
| 1209 } // namespace content | 1211 } // namespace content |
| 1210 | 1212 |
| 1211 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1213 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |