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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 virtual void didFinishResourceLoad( | 347 virtual void didFinishResourceLoad( |
348 WebKit::WebFrame* frame, unsigned identifier); | 348 WebKit::WebFrame* frame, unsigned identifier); |
349 virtual void didFailResourceLoad( | 349 virtual void didFailResourceLoad( |
350 WebKit::WebFrame* frame, unsigned identifier, | 350 WebKit::WebFrame* frame, unsigned identifier, |
351 const WebKit::WebURLError& error); | 351 const WebKit::WebURLError& error); |
352 virtual void didLoadResourceFromMemoryCache( | 352 virtual void didLoadResourceFromMemoryCache( |
353 WebKit::WebFrame* frame, const WebKit::WebURLRequest& request, | 353 WebKit::WebFrame* frame, const WebKit::WebURLRequest& request, |
354 const WebKit::WebURLResponse&); | 354 const WebKit::WebURLResponse&); |
355 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame) {} | 355 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame) {} |
356 virtual void didRunInsecureContent( | 356 virtual void didRunInsecureContent( |
357 WebKit::WebFrame* frame, const WebKit::WebString& security_origin) {} | 357 WebKit::WebFrame* frame, const WebKit::WebSecurityOrigin& origin) {} |
358 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); | 358 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); |
359 virtual void didChangeContentsSize( | 359 virtual void didChangeContentsSize( |
360 WebKit::WebFrame* frame, const WebKit::WebSize& size); | 360 WebKit::WebFrame* frame, const WebKit::WebSize& size); |
361 | 361 |
362 // webkit_glue::WebPluginPageDelegate | 362 // webkit_glue::WebPluginPageDelegate |
363 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate( | 363 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate( |
364 const GURL& url, | 364 const GURL& url, |
365 const std::string& mime_type, | 365 const std::string& mime_type, |
366 std::string* actual_mime_type); | 366 std::string* actual_mime_type); |
367 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); | 367 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); |
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
924 WebPreferences webkit_preferences_; | 924 WebPreferences webkit_preferences_; |
925 | 925 |
926 // Stores edit commands associated to the next key event. | 926 // Stores edit commands associated to the next key event. |
927 // Shall be cleared as soon as the next key event is processed. | 927 // Shall be cleared as soon as the next key event is processed. |
928 EditCommands edit_commands_; | 928 EditCommands edit_commands_; |
929 | 929 |
930 DISALLOW_COPY_AND_ASSIGN(RenderView); | 930 DISALLOW_COPY_AND_ASSIGN(RenderView); |
931 }; | 931 }; |
932 | 932 |
933 #endif // CHROME_RENDERER_RENDER_VIEW_H_ | 933 #endif // CHROME_RENDERER_RENDER_VIEW_H_ |
OLD | NEW |