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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 bool user_gesture) OVERRIDE; | 424 bool user_gesture) OVERRIDE; |
425 virtual void ShowCreatedWidget(int route_id, | 425 virtual void ShowCreatedWidget(int route_id, |
426 const gfx::Rect& initial_pos) OVERRIDE; | 426 const gfx::Rect& initial_pos) OVERRIDE; |
427 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; | 427 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; |
428 virtual void ShowContextMenu( | 428 virtual void ShowContextMenu( |
429 const content::ContextMenuParams& params, | 429 const content::ContextMenuParams& params, |
430 content::ContextMenuSourceType type) OVERRIDE; | 430 content::ContextMenuSourceType type) OVERRIDE; |
431 virtual void RequestMediaAccessPermission( | 431 virtual void RequestMediaAccessPermission( |
432 const content::MediaStreamRequest* request, | 432 const content::MediaStreamRequest* request, |
433 const content::MediaResponseCallback& callback) OVERRIDE; | 433 const content::MediaResponseCallback& callback) OVERRIDE; |
| 434 virtual void RequestAutocomplete() OVERRIDE; |
434 | 435 |
435 #if defined(OS_ANDROID) | 436 #if defined(OS_ANDROID) |
436 virtual void AttachLayer(WebKit::WebLayer* layer) OVERRIDE; | 437 virtual void AttachLayer(WebKit::WebLayer* layer) OVERRIDE; |
437 virtual void RemoveLayer(WebKit::WebLayer* layer) OVERRIDE; | 438 virtual void RemoveLayer(WebKit::WebLayer* layer) OVERRIDE; |
438 #endif | 439 #endif |
439 | 440 |
440 // RenderWidgetHostDelegate -------------------------------------------------- | 441 // RenderWidgetHostDelegate -------------------------------------------------- |
441 | 442 |
442 virtual void RenderWidgetDeleted( | 443 virtual void RenderWidgetDeleted( |
443 content::RenderWidgetHostImpl* render_widget_host) OVERRIDE; | 444 content::RenderWidgetHostImpl* render_widget_host) OVERRIDE; |
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
874 content::RenderViewHost* message_source_; | 875 content::RenderViewHost* message_source_; |
875 | 876 |
876 // All live RenderWidgetHostImpls that are created by this object and may | 877 // All live RenderWidgetHostImpls that are created by this object and may |
877 // outlive it. | 878 // outlive it. |
878 std::set<content::RenderWidgetHostImpl*> created_widgets_; | 879 std::set<content::RenderWidgetHostImpl*> created_widgets_; |
879 | 880 |
880 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 881 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
881 }; | 882 }; |
882 | 883 |
883 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 884 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |