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_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 Loading... |
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 // Captures screenshot and compresses pixels using given |format|, |
| 72 // |quality| and |scale|. |
| 73 // - |format| should be one of of "jpeg", "png" and "webp" |
| 74 // - |quality| is in range [0, 100], is format-specific |
| 75 // - |scale| is from range (0, 1] |
| 76 virtual bool GrabSnapshot(const std::string& format, |
| 77 int quality, |
| 78 double scale, |
| 79 std::vector<uint8>* data) = 0; |
| 80 |
71 protected: | 81 protected: |
72 virtual ~RenderViewHostDelegateView() {} | 82 virtual ~RenderViewHostDelegateView() {} |
73 }; | 83 }; |
74 | 84 |
75 } // namespace content | 85 } // namespace content |
76 | 86 |
77 #endif // CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ | 87 #endif // CONTENT_PORT_BROWSER_RENDER_VIEW_HOST_DELEGATE_VIEW_H_ |
OLD | NEW |