| 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_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 virtual bool enumerateChosenDirectory( | 388 virtual bool enumerateChosenDirectory( |
| 389 const blink::WebString& path, | 389 const blink::WebString& path, |
| 390 blink::WebFileChooserCompletion* chooser_completion); | 390 blink::WebFileChooserCompletion* chooser_completion); |
| 391 virtual void didCancelCompositionOnSelectionChange(); | 391 virtual void didCancelCompositionOnSelectionChange(); |
| 392 virtual bool handleCurrentKeyboardEvent(); | 392 virtual bool handleCurrentKeyboardEvent(); |
| 393 virtual bool runFileChooser( | 393 virtual bool runFileChooser( |
| 394 const blink::WebFileChooserParams& params, | 394 const blink::WebFileChooserParams& params, |
| 395 blink::WebFileChooserCompletion* chooser_completion); | 395 blink::WebFileChooserCompletion* chooser_completion); |
| 396 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, | 396 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, |
| 397 const blink::WebString& main_text, | 397 const blink::WebString& main_text, |
| 398 blink::WebTextDirection main_text_hint, |
| 398 const blink::WebString& sub_text, | 399 const blink::WebString& sub_text, |
| 399 blink::WebTextDirection hint) OVERRIDE; | 400 blink::WebTextDirection hint) OVERRIDE; |
| 400 virtual void hideValidationMessage() OVERRIDE; | 401 virtual void hideValidationMessage() OVERRIDE; |
| 401 virtual void moveValidationMessage( | 402 virtual void moveValidationMessage( |
| 402 const blink::WebRect& anchor_in_root_view) OVERRIDE; | 403 const blink::WebRect& anchor_in_root_view) OVERRIDE; |
| 403 virtual void setStatusText(const blink::WebString& text); | 404 virtual void setStatusText(const blink::WebString& text); |
| 404 virtual void setMouseOverURL(const blink::WebURL& url); | 405 virtual void setMouseOverURL(const blink::WebURL& url); |
| 405 virtual void setKeyboardFocusURL(const blink::WebURL& url); | 406 virtual void setKeyboardFocusURL(const blink::WebURL& url); |
| 406 virtual void startDragging(blink::WebLocalFrame* frame, | 407 virtual void startDragging(blink::WebLocalFrame* frame, |
| 407 const blink::WebDragData& data, | 408 const blink::WebDragData& data, |
| (...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1145 // use the Observer interface to filter IPC messages and receive frame change | 1146 // use the Observer interface to filter IPC messages and receive frame change |
| 1146 // notifications. | 1147 // notifications. |
| 1147 // --------------------------------------------------------------------------- | 1148 // --------------------------------------------------------------------------- |
| 1148 | 1149 |
| 1149 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1150 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1150 }; | 1151 }; |
| 1151 | 1152 |
| 1152 } // namespace content | 1153 } // namespace content |
| 1153 | 1154 |
| 1154 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1155 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |