OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_RENDERER_RENDER_VIEW_H_ | 5 #ifndef CHROME_RENDERER_RENDER_VIEW_H_ |
6 #define CHROME_RENDERER_RENDER_VIEW_H_ | 6 #define CHROME_RENDERER_RENDER_VIEW_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <queue> | 10 #include <queue> |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 virtual void didBeginEditing() {} | 354 virtual void didBeginEditing() {} |
355 virtual void didChangeSelection(bool is_selection_empty); | 355 virtual void didChangeSelection(bool is_selection_empty); |
356 virtual void didChangeContents() {} | 356 virtual void didChangeContents() {} |
357 virtual void didExecuteCommand(const WebKit::WebString& command_name); | 357 virtual void didExecuteCommand(const WebKit::WebString& command_name); |
358 virtual void didEndEditing() {} | 358 virtual void didEndEditing() {} |
359 | 359 |
360 // webkit_glue::WebPluginPageDelegate | 360 // webkit_glue::WebPluginPageDelegate |
361 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate( | 361 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate( |
362 const GURL& url, | 362 const GURL& url, |
363 const std::string& mime_type, | 363 const std::string& mime_type, |
364 const std::string& clsid, | |
365 std::string* actual_mime_type); | 364 std::string* actual_mime_type); |
366 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); | 365 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); |
367 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle); | 366 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle); |
368 virtual void DidMovePlugin(const webkit_glue::WebPluginGeometry& move); | 367 virtual void DidMovePlugin(const webkit_glue::WebPluginGeometry& move); |
369 virtual void DidStartLoadingForPlugin(); | 368 virtual void DidStartLoadingForPlugin(); |
370 virtual void DidStopLoadingForPlugin(); | 369 virtual void DidStopLoadingForPlugin(); |
371 virtual void ShowModalHTMLDialogForPlugin( | 370 virtual void ShowModalHTMLDialogForPlugin( |
372 const GURL& url, | 371 const GURL& url, |
373 const gfx::Size& size, | 372 const gfx::Size& size, |
374 const std::string& json_arguments, | 373 const std::string& json_arguments, |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 // page id for the last navigation sent to the browser. | 891 // page id for the last navigation sent to the browser. |
893 int32 last_top_level_navigation_page_id_; | 892 int32 last_top_level_navigation_page_id_; |
894 | 893 |
895 // The settings this render view initialized WebKit with. | 894 // The settings this render view initialized WebKit with. |
896 WebPreferences webkit_preferences_; | 895 WebPreferences webkit_preferences_; |
897 | 896 |
898 DISALLOW_COPY_AND_ASSIGN(RenderView); | 897 DISALLOW_COPY_AND_ASSIGN(RenderView); |
899 }; | 898 }; |
900 | 899 |
901 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 900 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |