| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_H_ |
| 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <deque> | 9 #include <deque> |
| 10 #include <map> | 10 #include <map> |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 WebKit::WebFrame* frame, | 554 WebKit::WebFrame* frame, |
| 555 WebKit::WebStorageQuotaType type, | 555 WebKit::WebStorageQuotaType type, |
| 556 WebKit::WebStorageQuotaCallbacks* callbacks); | 556 WebKit::WebStorageQuotaCallbacks* callbacks); |
| 557 | 557 |
| 558 virtual void requestStorageQuota( | 558 virtual void requestStorageQuota( |
| 559 WebKit::WebFrame* frame, | 559 WebKit::WebFrame* frame, |
| 560 WebKit::WebStorageQuotaType type, | 560 WebKit::WebStorageQuotaType type, |
| 561 unsigned long long requested_size, | 561 unsigned long long requested_size, |
| 562 WebKit::WebStorageQuotaCallbacks* callbacks); | 562 WebKit::WebStorageQuotaCallbacks* callbacks); |
| 563 | 563 |
| 564 virtual WebKit::WebString signedPublicKeyAndChallengeString( |
| 565 unsigned key_size_index, |
| 566 const WebKit::WebString& challenge, |
| 567 const WebKit::WebURL& url); |
| 568 |
| 564 // webkit_glue::WebPluginPageDelegate implementation ------------------------- | 569 // webkit_glue::WebPluginPageDelegate implementation ------------------------- |
| 565 | 570 |
| 566 virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate( | 571 virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate( |
| 567 const FilePath& file_path, | 572 const FilePath& file_path, |
| 568 const std::string& mime_type); | 573 const std::string& mime_type); |
| 569 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); | 574 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); |
| 570 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle); | 575 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle); |
| 571 virtual void DidMovePlugin(const webkit::npapi::WebPluginGeometry& move); | 576 virtual void DidMovePlugin(const webkit::npapi::WebPluginGeometry& move); |
| 572 virtual void DidStartLoadingForPlugin(); | 577 virtual void DidStartLoadingForPlugin(); |
| 573 virtual void DidStopLoadingForPlugin(); | 578 virtual void DidStopLoadingForPlugin(); |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1147 // bunch of stuff, you should probably create a helper class and put your | 1152 // bunch of stuff, you should probably create a helper class and put your |
| 1148 // data and methods on that to avoid bloating RenderView more. You can use | 1153 // data and methods on that to avoid bloating RenderView more. You can use |
| 1149 // the Observer interface to filter IPC messages and receive frame change | 1154 // the Observer interface to filter IPC messages and receive frame change |
| 1150 // notifications. | 1155 // notifications. |
| 1151 // --------------------------------------------------------------------------- | 1156 // --------------------------------------------------------------------------- |
| 1152 | 1157 |
| 1153 DISALLOW_COPY_AND_ASSIGN(RenderView); | 1158 DISALLOW_COPY_AND_ASSIGN(RenderView); |
| 1154 }; | 1159 }; |
| 1155 | 1160 |
| 1156 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ | 1161 #endif // CONTENT_RENDERER_RENDER_VIEW_H_ |
| OLD | NEW |