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

Side by Side Diff: webkit/tools/test_shell/test_worker/test_worker_main.cc

Issue 131082: Add getFileSize support to chromium... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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/tools/test_shell/test_shell_webkit_init.h ('k') | no next file » | 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 #include "config.h" 5 #include "config.h"
6 6
7 #include "base/at_exit.h" 7 #include "base/at_exit.h"
8 #include "base/gfx/native_widget_types.h" 8 #include "base/gfx/native_widget_types.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/path_service.h" 10 #include "base/path_service.h"
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 const WebKit::WebURL& url, 69 const WebKit::WebURL& url,
70 const WebKit::WebURL& first_party_for_cookies) { 70 const WebKit::WebURL& first_party_for_cookies) {
71 NOTREACHED(); 71 NOTREACHED();
72 return WebKit::WebString(); 72 return WebKit::WebString();
73 } 73 }
74 74
75 virtual void prefetchHostName(const WebKit::WebString&) { 75 virtual void prefetchHostName(const WebKit::WebString&) {
76 NOTREACHED(); 76 NOTREACHED();
77 } 77 }
78 78
79 virtual bool getFileSize(const WebKit::WebString& path, long long& result) {
80 NOTREACHED();
81 return false;
82 }
83
79 virtual WebKit::WebString defaultLocale() { 84 virtual WebKit::WebString defaultLocale() {
80 NOTREACHED(); 85 NOTREACHED();
81 return WebKit::WebString(); 86 return WebKit::WebString();
82 } 87 }
83 88
84 virtual void callOnMainThread(void (*func)()) { 89 virtual void callOnMainThread(void (*func)()) {
85 helper_->DispatchToMainThread(func); 90 helper_->DispatchToMainThread(func);
86 } 91 }
87 92
88 private: 93 private:
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 bool DownloadUrl(const std::string& url, HWND caller_window) { 223 bool DownloadUrl(const std::string& url, HWND caller_window) {
219 return false; 224 return false;
220 } 225 }
221 #endif 226 #endif
222 227
223 } // namespace webkit_glue 228 } // namespace webkit_glue
224 229
225 #if defined(COMPILER_GCC) 230 #if defined(COMPILER_GCC)
226 #pragma GCC visibility pop 231 #pragma GCC visibility pop
227 #endif 232 #endif
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_webkit_init.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698