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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 const WebKit::WebString& path, | 427 const WebKit::WebString& path, |
428 WebKit::WebFileChooserCompletion* chooser_completion); | 428 WebKit::WebFileChooserCompletion* chooser_completion); |
429 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); | 429 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); |
430 virtual void didStartLoading(); | 430 virtual void didStartLoading(); |
431 virtual void didStopLoading(); | 431 virtual void didStopLoading(); |
432 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, | 432 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, |
433 double load_progress); | 433 double load_progress); |
434 virtual void didCancelCompositionOnSelectionChange(); | 434 virtual void didCancelCompositionOnSelectionChange(); |
435 virtual void didChangeSelection(bool is_selection_empty); | 435 virtual void didChangeSelection(bool is_selection_empty); |
436 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 436 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
| 437 virtual void didScrollWithKeyboard(const WebKit::WebFloatSize& delta); |
437 virtual bool handleCurrentKeyboardEvent(); | 438 virtual bool handleCurrentKeyboardEvent(); |
438 virtual WebKit::WebColorChooser* createColorChooser( | 439 virtual WebKit::WebColorChooser* createColorChooser( |
439 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); | 440 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); |
440 virtual bool runFileChooser( | 441 virtual bool runFileChooser( |
441 const WebKit::WebFileChooserParams& params, | 442 const WebKit::WebFileChooserParams& params, |
442 WebKit::WebFileChooserCompletion* chooser_completion); | 443 WebKit::WebFileChooserCompletion* chooser_completion); |
443 virtual void runModalAlertDialog(WebKit::WebFrame* frame, | 444 virtual void runModalAlertDialog(WebKit::WebFrame* frame, |
444 const WebKit::WebString& message); | 445 const WebKit::WebString& message); |
445 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, | 446 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, |
446 const WebKit::WebString& message); | 447 const WebKit::WebString& message); |
(...skipping 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1539 // use the Observer interface to filter IPC messages and receive frame change | 1540 // use the Observer interface to filter IPC messages and receive frame change |
1540 // notifications. | 1541 // notifications. |
1541 // --------------------------------------------------------------------------- | 1542 // --------------------------------------------------------------------------- |
1542 | 1543 |
1543 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1544 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1544 }; | 1545 }; |
1545 | 1546 |
1546 } // namespace content | 1547 } // namespace content |
1547 | 1548 |
1548 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1549 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |