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

Side by Side Diff: webkit/tools/test_shell/test_webview_delegate.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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // TestWebViewDelegate class: 5 // TestWebViewDelegate class:
6 // This class implements the WebViewDelegate methods for the test shell. One 6 // This class implements the WebViewDelegate methods for the test shell. One
7 // instance is owned by each TestShell. 7 // instance is owned by each TestShell.
8 8
9 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ 9 #ifndef WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_
10 #define WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ 10 #define WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 const WebKit::WebURLResponse& redirectResponse); 209 const WebKit::WebURLResponse& redirectResponse);
210 virtual void didReceiveResponse( 210 virtual void didReceiveResponse(
211 WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLResponse&); 211 WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLResponse&);
212 virtual void didFinishResourceLoad( 212 virtual void didFinishResourceLoad(
213 WebKit::WebFrame*, unsigned identifier); 213 WebKit::WebFrame*, unsigned identifier);
214 virtual void didFailResourceLoad( 214 virtual void didFailResourceLoad(
215 WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLError&); 215 WebKit::WebFrame*, unsigned identifier, const WebKit::WebURLError&);
216 virtual void didLoadResourceFromMemoryCache( 216 virtual void didLoadResourceFromMemoryCache(
217 WebKit::WebFrame*, const WebKit::WebURLRequest&, 217 WebKit::WebFrame*, const WebKit::WebURLRequest&,
218 const WebKit::WebURLResponse&); 218 const WebKit::WebURLResponse&);
219 virtual void didDisplayInsecureContent(WebKit::WebFrame* frame);
220 virtual void didRunInsecureContent(
221 WebKit::WebFrame* frame, const WebKit::WebString& security_origin);
219 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame*); 222 virtual void didExhaustMemoryAvailableForScript(WebKit::WebFrame*);
220 virtual void didChangeContentsSize( 223 virtual void didChangeContentsSize(
221 WebKit::WebFrame*, const WebKit::WebSize&); 224 WebKit::WebFrame*, const WebKit::WebSize&);
222 225
223 // webkit_glue::WebPluginPageDelegate 226 // webkit_glue::WebPluginPageDelegate
224 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate( 227 virtual webkit_glue::WebPluginDelegate* CreatePluginDelegate(
225 const GURL& url, 228 const GURL& url,
226 const std::string& mime_type, 229 const std::string& mime_type,
227 std::string* actual_mime_type); 230 std::string* actual_mime_type);
228 virtual void CreatedPluginWindow( 231 virtual void CreatedPluginWindow(
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 // true if we want to enable selection of trailing whitespaces 377 // true if we want to enable selection of trailing whitespaces
375 bool select_trailing_whitespace_enabled_; 378 bool select_trailing_whitespace_enabled_;
376 379
377 // true if we should block any redirects 380 // true if we should block any redirects
378 bool block_redirects_; 381 bool block_redirects_;
379 382
380 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate); 383 DISALLOW_COPY_AND_ASSIGN(TestWebViewDelegate);
381 }; 384 };
382 385
383 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_ 386 #endif // WEBKIT_TOOLS_TEST_SHELL_TEST_WEBVIEW_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698