Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(628)

Side by Side Diff: chrome/renderer/render_view.h

Issue 200110: Fix some mixed content layout tests.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/api/public/WebFrameClient.h » ('j') | webkit/glue/empty_webframeclient.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 WebKit::WebFrame* frame, unsigned identifier, 350 WebKit::WebFrame* frame, unsigned identifier,
351 const WebKit::WebURLResponse& response); 351 const WebKit::WebURLResponse& response);
352 virtual void didFinishResourceLoad( 352 virtual void didFinishResourceLoad(
353 WebKit::WebFrame* frame, unsigned identifier); 353 WebKit::WebFrame* frame, unsigned identifier);
354 virtual void didFailResourceLoad( 354 virtual void didFailResourceLoad(
355 WebKit::WebFrame* frame, unsigned identifier, 355 WebKit::WebFrame* frame, unsigned identifier,
356 const WebKit::WebURLError& error); 356 const WebKit::WebURLError& error);
357 virtual void didLoadResourceFromMemoryCache( 357 virtual void didLoadResourceFromMemoryCache(
358 WebKit::WebFrame* frame, const WebKit::WebURLRequest& request, 358 WebKit::WebFrame* frame, const WebKit::WebURLRequest& request,
359 const WebKit::WebURLResponse&); 359 const WebKit::WebURLResponse&);
360 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame) {}
361 virtual void didRunInsecureContent(
362 WebKit::WebFrame* frame, const WebKit::WebString& security_origin) {}
360 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame); 363 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame);
361 virtual void didChangeContentsSize( 364 virtual void didChangeContentsSize(
362 WebKit::WebFrame* frame, const WebKit::WebSize& size); 365 WebKit::WebFrame* frame, const WebKit::WebSize& size);
363 366
364 // webkit_glue::WebPluginPageDelegate 367 // webkit_glue::WebPluginPageDelegate
365 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate( 368 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate(
366 const GURL& url, 369 const GURL& url,
367 const std::string& mime_type, 370 const std::string& mime_type,
368 std::string* actual_mime_type); 371 std::string* actual_mime_type);
369 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle); 372 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle);
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
920 WebPreferences webkit_preferences_; 923 WebPreferences webkit_preferences_;
921 924
922 // Stores edit commands associated to the next key event. 925 // Stores edit commands associated to the next key event.
923 // Shall be cleared as soon as the next key event is processed. 926 // Shall be cleared as soon as the next key event is processed.
924 EditCommands edit_commands_; 927 EditCommands edit_commands_;
925 928
926 DISALLOW_COPY_AND_ASSIGN(RenderView); 929 DISALLOW_COPY_AND_ASSIGN(RenderView);
927 }; 930 };
928 931
929 #endif // CHROME_RENDERER_RENDER_VIEW_H_ 932 #endif // CHROME_RENDERER_RENDER_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | webkit/api/public/WebFrameClient.h » ('j') | webkit/glue/empty_webframeclient.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698