| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
| 6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 WebKit::WebFrame* frame, const WebKit::WebString& message); | 243 WebKit::WebFrame* frame, const WebKit::WebString& message); |
| 244 virtual bool runModalConfirmDialog( | 244 virtual bool runModalConfirmDialog( |
| 245 WebKit::WebFrame* frame, const WebKit::WebString& message); | 245 WebKit::WebFrame* frame, const WebKit::WebString& message); |
| 246 virtual bool runModalPromptDialog( | 246 virtual bool runModalPromptDialog( |
| 247 WebKit::WebFrame* frame, const WebKit::WebString& message, | 247 WebKit::WebFrame* frame, const WebKit::WebString& message, |
| 248 const WebKit::WebString& default_value, WebKit::WebString* actual_value); | 248 const WebKit::WebString& default_value, WebKit::WebString* actual_value); |
| 249 virtual bool runModalBeforeUnloadDialog( | 249 virtual bool runModalBeforeUnloadDialog( |
| 250 WebKit::WebFrame* frame, const WebKit::WebString& message); | 250 WebKit::WebFrame* frame, const WebKit::WebString& message); |
| 251 virtual void showContextMenu( | 251 virtual void showContextMenu( |
| 252 WebKit::WebFrame* frame, const WebKit::WebContextMenuData& data); | 252 WebKit::WebFrame* frame, const WebKit::WebContextMenuData& data); |
| 253 virtual bool supportsFullscreen(); |
| 254 virtual void enterFullscreenForNode(const WebKit::WebNode&); |
| 255 virtual void exitFullscreenForNode(const WebKit::WebNode&); |
| 253 virtual void setStatusText(const WebKit::WebString& text); | 256 virtual void setStatusText(const WebKit::WebString& text); |
| 254 virtual void setMouseOverURL(const WebKit::WebURL& url); | 257 virtual void setMouseOverURL(const WebKit::WebURL& url); |
| 255 virtual void setKeyboardFocusURL(const WebKit::WebURL& url); | 258 virtual void setKeyboardFocusURL(const WebKit::WebURL& url); |
| 256 virtual void setToolTipText( | 259 virtual void setToolTipText( |
| 257 const WebKit::WebString& text, WebKit::WebTextDirection hint); | 260 const WebKit::WebString& text, WebKit::WebTextDirection hint); |
| 258 virtual void startDragging( | 261 virtual void startDragging( |
| 259 const WebKit::WebDragData& data, | 262 const WebKit::WebDragData& data, |
| 260 WebKit::WebDragOperationsMask mask, | 263 WebKit::WebDragOperationsMask mask, |
| 261 const WebKit::WebImage& image, | 264 const WebKit::WebImage& image, |
| 262 const WebKit::WebPoint& imageOffset); | 265 const WebKit::WebPoint& imageOffset); |
| (...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 | 1244 |
| 1242 PepperPluginDelegateImpl pepper_delegate_; | 1245 PepperPluginDelegateImpl pepper_delegate_; |
| 1243 | 1246 |
| 1244 // The action to take when receiving AutoFill data from the AutoFillManager. | 1247 // The action to take when receiving AutoFill data from the AutoFillManager. |
| 1245 AutoFillAction autofill_action_; | 1248 AutoFillAction autofill_action_; |
| 1246 | 1249 |
| 1247 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1250 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1248 }; | 1251 }; |
| 1249 | 1252 |
| 1250 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1253 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |