| 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 <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 virtual void CreateNewFullscreenWidget(int route_id) OVERRIDE; | 396 virtual void CreateNewFullscreenWidget(int route_id) OVERRIDE; |
| 397 virtual void ShowCreatedWindow(int route_id, | 397 virtual void ShowCreatedWindow(int route_id, |
| 398 WindowOpenDisposition disposition, | 398 WindowOpenDisposition disposition, |
| 399 const gfx::Rect& initial_pos, | 399 const gfx::Rect& initial_pos, |
| 400 bool user_gesture) OVERRIDE; | 400 bool user_gesture) OVERRIDE; |
| 401 virtual void ShowCreatedWidget(int route_id, | 401 virtual void ShowCreatedWidget(int route_id, |
| 402 const gfx::Rect& initial_pos) OVERRIDE; | 402 const gfx::Rect& initial_pos) OVERRIDE; |
| 403 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; | 403 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; |
| 404 virtual void ShowContextMenu( | 404 virtual void ShowContextMenu( |
| 405 const content::ContextMenuParams& params, | 405 const content::ContextMenuParams& params, |
| 406 const content::ContextMenuSourceType& type) OVERRIDE; | 406 content::ContextMenuSourceType type) OVERRIDE; |
| 407 virtual void RequestMediaAccessPermission( | 407 virtual void RequestMediaAccessPermission( |
| 408 const content::MediaStreamRequest* request, | 408 const content::MediaStreamRequest* request, |
| 409 const content::MediaResponseCallback& callback) OVERRIDE; | 409 const content::MediaResponseCallback& callback) OVERRIDE; |
| 410 | 410 |
| 411 #if defined(OS_ANDROID) | 411 #if defined(OS_ANDROID) |
| 412 virtual void AttachLayer(WebKit::WebLayer* layer) OVERRIDE; | 412 virtual void AttachLayer(WebKit::WebLayer* layer) OVERRIDE; |
| 413 virtual void RemoveLayer(WebKit::WebLayer* layer) OVERRIDE; | 413 virtual void RemoveLayer(WebKit::WebLayer* layer) OVERRIDE; |
| 414 #endif | 414 #endif |
| 415 | 415 |
| 416 // RenderWidgetHostDelegate -------------------------------------------------- | 416 // RenderWidgetHostDelegate -------------------------------------------------- |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 content::NotificationRegistrar registrar_; | 828 content::NotificationRegistrar registrar_; |
| 829 | 829 |
| 830 // Used during IPC message dispatching so that the handlers can get a pointer | 830 // Used during IPC message dispatching so that the handlers can get a pointer |
| 831 // to the RVH through which the message was received. | 831 // to the RVH through which the message was received. |
| 832 content::RenderViewHost* message_source_; | 832 content::RenderViewHost* message_source_; |
| 833 | 833 |
| 834 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 834 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
| 835 }; | 835 }; |
| 836 | 836 |
| 837 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 837 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |