Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 10828356: Very basic Android browser-side compositing support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments, make compositor non-singleton Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 const gfx::Rect& initial_pos, 401 const gfx::Rect& initial_pos,
402 bool user_gesture) OVERRIDE; 402 bool user_gesture) OVERRIDE;
403 virtual void ShowCreatedWidget(int route_id, 403 virtual void ShowCreatedWidget(int route_id,
404 const gfx::Rect& initial_pos) OVERRIDE; 404 const gfx::Rect& initial_pos) OVERRIDE;
405 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE; 405 virtual void ShowCreatedFullscreenWidget(int route_id) OVERRIDE;
406 virtual void ShowContextMenu( 406 virtual void ShowContextMenu(
407 const content::ContextMenuParams& params) OVERRIDE; 407 const content::ContextMenuParams& params) OVERRIDE;
408 virtual void RequestMediaAccessPermission( 408 virtual void RequestMediaAccessPermission(
409 const content::MediaStreamRequest* request, 409 const content::MediaStreamRequest* request,
410 const content::MediaResponseCallback& callback) OVERRIDE; 410 const content::MediaResponseCallback& callback) OVERRIDE;
411 virtual void AttachLayer(WebKit::WebLayer* layer) OVERRIDE;
412 virtual void RemoveLayer(WebKit::WebLayer* layer) OVERRIDE;
411 413
412 // RenderWidgetHostDelegate -------------------------------------------------- 414 // RenderWidgetHostDelegate --------------------------------------------------
413 415
414 virtual bool PreHandleKeyboardEvent( 416 virtual bool PreHandleKeyboardEvent(
415 const content::NativeWebKeyboardEvent& event, 417 const content::NativeWebKeyboardEvent& event,
416 bool* is_keyboard_shortcut) OVERRIDE; 418 bool* is_keyboard_shortcut) OVERRIDE;
417 virtual void HandleKeyboardEvent( 419 virtual void HandleKeyboardEvent(
418 const content::NativeWebKeyboardEvent& event) OVERRIDE; 420 const content::NativeWebKeyboardEvent& event) OVERRIDE;
419 421
420 // RenderViewHostManager::Delegate ------------------------------------------- 422 // RenderViewHostManager::Delegate -------------------------------------------
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 content::NotificationRegistrar registrar_; 819 content::NotificationRegistrar registrar_;
818 820
819 // Used during IPC message dispatching so that the handlers can get a pointer 821 // Used during IPC message dispatching so that the handlers can get a pointer
820 // to the RVH through which the message was received. 822 // to the RVH through which the message was received.
821 content::RenderViewHost* message_source_; 823 content::RenderViewHost* message_source_;
822 824
823 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 825 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
824 }; 826 };
825 827
826 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 828 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698