| 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 // 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_ |
| OLD | NEW |