OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 virtual void reportFindInPageSelection( | 404 virtual void reportFindInPageSelection( |
405 int request_id, int active_match_ordinal, const WebKit::WebRect& sel); | 405 int request_id, int active_match_ordinal, const WebKit::WebRect& sel); |
406 | 406 |
407 // webPageSerializerClient | 407 // webPageSerializerClient |
408 virtual void didSerializeDataForFrame(const WebKit::WebURL& frame_url, | 408 virtual void didSerializeDataForFrame(const WebKit::WebURL& frame_url, |
409 const WebKit::WebCString& data, | 409 const WebKit::WebCString& data, |
410 PageSerializationStatus status); | 410 PageSerializationStatus status); |
411 | 411 |
412 // webkit_glue::WebPluginPageDelegate | 412 // webkit_glue::WebPluginPageDelegate |
413 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate( | 413 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate( |
414 const GURL& url, | 414 const FilePath& file_path, |
415 const std::string& mime_type, | 415 const std::string& mime_type); |
416 std::string* actual_mime_type); | |
417 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); | 416 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); |
418 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle); | 417 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle); |
419 virtual void DidMovePlugin(const webkit_glue::WebPluginGeometry& move); | 418 virtual void DidMovePlugin(const webkit_glue::WebPluginGeometry& move); |
420 virtual void DidStartLoadingForPlugin(); | 419 virtual void DidStartLoadingForPlugin(); |
421 virtual void DidStopLoadingForPlugin(); | 420 virtual void DidStopLoadingForPlugin(); |
422 virtual void ShowModalHTMLDialogForPlugin( | 421 virtual void ShowModalHTMLDialogForPlugin( |
423 const GURL& url, | 422 const GURL& url, |
424 const gfx::Size& size, | 423 const gfx::Size& size, |
425 const std::string& json_arguments, | 424 const std::string& json_arguments, |
426 std::string* json_retval); | 425 std::string* json_retval); |
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1217 // in OnClosePage. | 1216 // in OnClosePage. |
1218 int cross_origin_access_count_; | 1217 int cross_origin_access_count_; |
1219 int same_origin_access_count_; | 1218 int same_origin_access_count_; |
1220 | 1219 |
1221 PepperPluginDelegateImpl pepper_delegate_; | 1220 PepperPluginDelegateImpl pepper_delegate_; |
1222 | 1221 |
1223 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1222 DISALLOW_COPY_AND_ASSIGN(RenderView); |
1224 }; | 1223 }; |
1225 | 1224 |
1226 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 1225 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |