| 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 virtual bool enumerateChosenDirectory( | 408 virtual bool enumerateChosenDirectory( |
| 409 const blink::WebString& path, | 409 const blink::WebString& path, |
| 410 blink::WebFileChooserCompletion* chooser_completion); | 410 blink::WebFileChooserCompletion* chooser_completion); |
| 411 virtual void didCancelCompositionOnSelectionChange(); | 411 virtual void didCancelCompositionOnSelectionChange(); |
| 412 virtual bool handleCurrentKeyboardEvent(); | 412 virtual bool handleCurrentKeyboardEvent(); |
| 413 virtual bool runFileChooser( | 413 virtual bool runFileChooser( |
| 414 const blink::WebFileChooserParams& params, | 414 const blink::WebFileChooserParams& params, |
| 415 blink::WebFileChooserCompletion* chooser_completion); | 415 blink::WebFileChooserCompletion* chooser_completion); |
| 416 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, | 416 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, |
| 417 const blink::WebString& main_text, | 417 const blink::WebString& main_text, |
| 418 blink::WebTextDirection main_text_hint, |
| 418 const blink::WebString& sub_text, | 419 const blink::WebString& sub_text, |
| 419 blink::WebTextDirection hint) OVERRIDE; | 420 blink::WebTextDirection hint) OVERRIDE; |
| 420 virtual void hideValidationMessage() OVERRIDE; | 421 virtual void hideValidationMessage() OVERRIDE; |
| 421 virtual void moveValidationMessage( | 422 virtual void moveValidationMessage( |
| 422 const blink::WebRect& anchor_in_root_view) OVERRIDE; | 423 const blink::WebRect& anchor_in_root_view) OVERRIDE; |
| 423 virtual void setStatusText(const blink::WebString& text); | 424 virtual void setStatusText(const blink::WebString& text); |
| 424 virtual void setMouseOverURL(const blink::WebURL& url); | 425 virtual void setMouseOverURL(const blink::WebURL& url); |
| 425 virtual void setKeyboardFocusURL(const blink::WebURL& url); | 426 virtual void setKeyboardFocusURL(const blink::WebURL& url); |
| 426 virtual void startDragging(blink::WebLocalFrame* frame, | 427 virtual void startDragging(blink::WebLocalFrame* frame, |
| 427 const blink::WebDragData& data, | 428 const blink::WebDragData& data, |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1177 // use the Observer interface to filter IPC messages and receive frame change | 1178 // use the Observer interface to filter IPC messages and receive frame change |
| 1178 // notifications. | 1179 // notifications. |
| 1179 // --------------------------------------------------------------------------- | 1180 // --------------------------------------------------------------------------- |
| 1180 | 1181 |
| 1181 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1182 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1182 }; | 1183 }; |
| 1183 | 1184 |
| 1184 } // namespace content | 1185 } // namespace content |
| 1185 | 1186 |
| 1186 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1187 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |