| 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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 virtual bool enumerateChosenDirectory( | 384 virtual bool enumerateChosenDirectory( |
| 385 const blink::WebString& path, | 385 const blink::WebString& path, |
| 386 blink::WebFileChooserCompletion* chooser_completion); | 386 blink::WebFileChooserCompletion* chooser_completion); |
| 387 virtual void didCancelCompositionOnSelectionChange(); | 387 virtual void didCancelCompositionOnSelectionChange(); |
| 388 virtual bool handleCurrentKeyboardEvent(); | 388 virtual bool handleCurrentKeyboardEvent(); |
| 389 virtual bool runFileChooser( | 389 virtual bool runFileChooser( |
| 390 const blink::WebFileChooserParams& params, | 390 const blink::WebFileChooserParams& params, |
| 391 blink::WebFileChooserCompletion* chooser_completion); | 391 blink::WebFileChooserCompletion* chooser_completion); |
| 392 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, | 392 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, |
| 393 const blink::WebString& main_text, | 393 const blink::WebString& main_text, |
| 394 blink::WebTextDirection main_text_hint, |
| 394 const blink::WebString& sub_text, | 395 const blink::WebString& sub_text, |
| 395 blink::WebTextDirection hint) OVERRIDE; | 396 blink::WebTextDirection hint) OVERRIDE; |
| 396 virtual void hideValidationMessage() OVERRIDE; | 397 virtual void hideValidationMessage() OVERRIDE; |
| 397 virtual void moveValidationMessage( | 398 virtual void moveValidationMessage( |
| 398 const blink::WebRect& anchor_in_root_view) OVERRIDE; | 399 const blink::WebRect& anchor_in_root_view) OVERRIDE; |
| 399 virtual void setStatusText(const blink::WebString& text); | 400 virtual void setStatusText(const blink::WebString& text); |
| 400 virtual void setMouseOverURL(const blink::WebURL& url); | 401 virtual void setMouseOverURL(const blink::WebURL& url); |
| 401 virtual void setKeyboardFocusURL(const blink::WebURL& url); | 402 virtual void setKeyboardFocusURL(const blink::WebURL& url); |
| 402 virtual void startDragging(blink::WebLocalFrame* frame, | 403 virtual void startDragging(blink::WebLocalFrame* frame, |
| 403 const blink::WebDragData& data, | 404 const blink::WebDragData& data, |
| (...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 // use the Observer interface to filter IPC messages and receive frame change | 1142 // use the Observer interface to filter IPC messages and receive frame change |
| 1142 // notifications. | 1143 // notifications. |
| 1143 // --------------------------------------------------------------------------- | 1144 // --------------------------------------------------------------------------- |
| 1144 | 1145 |
| 1145 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1146 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1146 }; | 1147 }; |
| 1147 | 1148 |
| 1148 } // namespace content | 1149 } // namespace content |
| 1149 | 1150 |
| 1150 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1151 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |