| Index: webkit/tools/test_shell/test_webview_delegate.cc
|
| ===================================================================
|
| --- webkit/tools/test_shell/test_webview_delegate.cc (revision 26025)
|
| +++ webkit/tools/test_shell/test_webview_delegate.cc (working copy)
|
| @@ -895,6 +895,17 @@
|
| const WebURLResponse&) {
|
| }
|
|
|
| +void TestWebViewDelegate::didDisplayInsecureContent(WebFrame* frame) {
|
| + if (shell_->ShouldDumpFrameLoadCallbacks())
|
| + printf("didDisplayInsecureContent\n");
|
| +}
|
| +
|
| +void TestWebViewDelegate::didRunInsecureContent(
|
| + WebFrame* frame, const WebString& security_origin) {
|
| + if (shell_->ShouldDumpFrameLoadCallbacks())
|
| + printf("didRunInsecureContent\n");
|
| +}
|
| +
|
| void TestWebViewDelegate::didExhaustMemoryAvailableForScript(WebFrame* frame) {
|
| }
|
|
|
|
|