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

Side by Side Diff: content/port/browser/render_view_host_delegate_view.h

Issue 21777003: DevTools: [Android] implement RenderWidgetHostViewAndroid::CopyFromCompositingSurface (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ 5 #ifndef CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_
6 #define CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ 6 #define CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual void UpdateDragCursor(WebKit::WebDragOperation operation) {} 61 virtual void UpdateDragCursor(WebKit::WebDragOperation operation) {}
62 62
63 // Notification that view for this delegate got the focus. 63 // Notification that view for this delegate got the focus.
64 virtual void GotFocus() {} 64 virtual void GotFocus() {}
65 65
66 // Callback to inform the browser that the page is returning the focus to 66 // Callback to inform the browser that the page is returning the focus to
67 // the browser's chrome. If reverse is true, it means the focus was 67 // the browser's chrome. If reverse is true, it means the focus was
68 // retrieved by doing a Shift-Tab. 68 // retrieved by doing a Shift-Tab.
69 virtual void TakeFocus(bool reverse) {} 69 virtual void TakeFocus(bool reverse) {}
70 70
71 // Take screenshot.
72 virtual bool GrabSnapshot(std::vector<uint8>* png) { return false; }
73
71 protected: 74 protected:
72 virtual ~RenderViewHostDelegateView() {} 75 virtual ~RenderViewHostDelegateView() {}
73 }; 76 };
74 77
75 } // namespace content 78 } // namespace content
76 79
77 #endif // CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ 80 #endif // CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698