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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type); | 409 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type); |
410 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( | 410 virtual blink::WebExternalPopupMenu* createExternalPopupMenu( |
411 const blink::WebPopupMenuInfo& popup_menu_info, | 411 const blink::WebPopupMenuInfo& popup_menu_info, |
412 blink::WebExternalPopupMenuClient* popup_menu_client); | 412 blink::WebExternalPopupMenuClient* popup_menu_client); |
413 virtual blink::WebStorageNamespace* createSessionStorageNamespace(); | 413 virtual blink::WebStorageNamespace* createSessionStorageNamespace(); |
414 virtual void printPage(blink::WebLocalFrame* frame); | 414 virtual void printPage(blink::WebLocalFrame* frame); |
415 virtual bool enumerateChosenDirectory( | 415 virtual bool enumerateChosenDirectory( |
416 const blink::WebString& path, | 416 const blink::WebString& path, |
417 blink::WebFileChooserCompletion* chooser_completion); | 417 blink::WebFileChooserCompletion* chooser_completion); |
418 virtual void didCancelCompositionOnSelectionChange(); | 418 virtual void didCancelCompositionOnSelectionChange(); |
419 virtual void didExecuteCommand(const blink::WebString& command_name); | |
420 virtual bool handleCurrentKeyboardEvent(); | 419 virtual bool handleCurrentKeyboardEvent(); |
421 virtual bool runFileChooser( | 420 virtual bool runFileChooser( |
422 const blink::WebFileChooserParams& params, | 421 const blink::WebFileChooserParams& params, |
423 blink::WebFileChooserCompletion* chooser_completion); | 422 blink::WebFileChooserCompletion* chooser_completion); |
424 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, | 423 virtual void showValidationMessage(const blink::WebRect& anchor_in_root_view, |
425 const blink::WebString& main_text, | 424 const blink::WebString& main_text, |
426 const blink::WebString& sub_text, | 425 const blink::WebString& sub_text, |
427 blink::WebTextDirection hint) OVERRIDE; | 426 blink::WebTextDirection hint) OVERRIDE; |
428 virtual void hideValidationMessage() OVERRIDE; | 427 virtual void hideValidationMessage() OVERRIDE; |
429 virtual void moveValidationMessage( | 428 virtual void moveValidationMessage( |
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1212 // use the Observer interface to filter IPC messages and receive frame change | 1211 // use the Observer interface to filter IPC messages and receive frame change |
1213 // notifications. | 1212 // notifications. |
1214 // --------------------------------------------------------------------------- | 1213 // --------------------------------------------------------------------------- |
1215 | 1214 |
1216 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1215 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1217 }; | 1216 }; |
1218 | 1217 |
1219 } // namespace content | 1218 } // namespace content |
1220 | 1219 |
1221 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1220 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |