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

Side by Side Diff: webkit/glue/empty_webframeclient.h

Issue 211013: Introduce WebKit::WebSecurityOrigin as a wrapper around... (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 | « webkit/api/src/WebSecurityOrigin.cpp ('k') | webkit/glue/glue_util.h » ('j') | no next file with comments »
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 WEBKIT_GLUE_EMPTY_WEBFRAMECLIENT_H_ 5 #ifndef WEBKIT_GLUE_EMPTY_WEBFRAMECLIENT_H_
6 #define WEBKIT_GLUE_EMPTY_WEBFRAMECLIENT_H_ 6 #define WEBKIT_GLUE_EMPTY_WEBFRAMECLIENT_H_
7 7
8 #include "webkit/api/public/WebFrameClient.h" 8 #include "webkit/api/public/WebFrameClient.h"
9 9
10 namespace webkit_glue { 10 namespace webkit_glue {
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 virtual void didFinishResourceLoad( 75 virtual void didFinishResourceLoad(
76 WebKit::WebFrame* frame, unsigned identifier) {} 76 WebKit::WebFrame* frame, unsigned identifier) {}
77 virtual void didFailResourceLoad( 77 virtual void didFailResourceLoad(
78 WebKit::WebFrame* frame, unsigned identifier, 78 WebKit::WebFrame* frame, unsigned identifier,
79 const WebKit::WebURLError& error) {} 79 const WebKit::WebURLError& error) {}
80 virtual void didLoadResourceFromMemoryCache( 80 virtual void didLoadResourceFromMemoryCache(
81 WebKit::WebFrame* frame, const WebKit::WebURLRequest& request, 81 WebKit::WebFrame* frame, const WebKit::WebURLRequest& request,
82 const WebKit::WebURLResponse&) {} 82 const WebKit::WebURLResponse&) {}
83 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame) {} 83 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame) {}
84 virtual void didRunInsecureContent( 84 virtual void didRunInsecureContent(
85 WebKit::WebFrame* frame, const WebKit::WebString& security_origin) {} 85 WebKit::WebFrame* frame, const WebKit::WebSecurityOrigin& origin) {}
86 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame) {} 86 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame* frame) {}
87 virtual void didChangeContentsSize( 87 virtual void didChangeContentsSize(
88 WebKit::WebFrame* frame, const WebKit::WebSize& size) {} 88 WebKit::WebFrame* frame, const WebKit::WebSize& size) {}
89 }; 89 };
90 90
91 } // namespace webkit_glue 91 } // namespace webkit_glue
92 92
93 #endif // WEBKIT_GLUE_EMPTY_WEBFRAMECLIENT_H_ 93 #endif // WEBKIT_GLUE_EMPTY_WEBFRAMECLIENT_H_
OLDNEW
« no previous file with comments | « webkit/api/src/WebSecurityOrigin.cpp ('k') | webkit/glue/glue_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698