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

Side by Side Diff: chrome/browser/in_process_webkit/browser_webkitclient_impl.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
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the 2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file. 3 // LICENSE file.
4 4
5 #include "chrome/browser/in_process_webkit/browser_webkitclient_impl.h" 5 #include "chrome/browser/in_process_webkit/browser_webkitclient_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "webkit/api/public/WebData.h" 8 #include "webkit/api/public/WebData.h"
9 #include "webkit/api/public/WebString.h" 9 #include "webkit/api/public/WebString.h"
10 #include "webkit/api/public/WebURL.h" 10 #include "webkit/api/public/WebURL.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 WebKit::WebString BrowserWebKitClientImpl::cookies( 45 WebKit::WebString BrowserWebKitClientImpl::cookies(
46 const WebKit::WebURL& url, const WebKit::WebURL& policy_url) { 46 const WebKit::WebURL& url, const WebKit::WebURL& policy_url) {
47 NOTREACHED(); 47 NOTREACHED();
48 return WebKit::WebString(); 48 return WebKit::WebString();
49 } 49 }
50 50
51 void BrowserWebKitClientImpl::prefetchHostName(const WebKit::WebString&) { 51 void BrowserWebKitClientImpl::prefetchHostName(const WebKit::WebString&) {
52 NOTREACHED(); 52 NOTREACHED();
53 } 53 }
54 54
55 bool BrowserWebKitClientImpl::getFileSize(const WebKit::WebString& path,
56 long long& result) {
57 NOTREACHED();
58 return false;
59 }
60
55 WebKit::WebString BrowserWebKitClientImpl::defaultLocale() { 61 WebKit::WebString BrowserWebKitClientImpl::defaultLocale() {
56 NOTREACHED(); 62 NOTREACHED();
57 return WebKit::WebString(); 63 return WebKit::WebString();
58 } 64 }
59 65
60 WebKit::WebThemeEngine* BrowserWebKitClientImpl::themeEngine() { 66 WebKit::WebThemeEngine* BrowserWebKitClientImpl::themeEngine() {
61 NOTREACHED(); 67 NOTREACHED();
62 return NULL; 68 return NULL;
63 } 69 }
64 70
65 WebKit::WebURLLoader* BrowserWebKitClientImpl::createURLLoader() { 71 WebKit::WebURLLoader* BrowserWebKitClientImpl::createURLLoader() {
66 NOTREACHED(); 72 NOTREACHED();
67 return NULL; 73 return NULL;
68 } 74 }
69 75
70 void BrowserWebKitClientImpl::getPluginList(bool refresh, 76 void BrowserWebKitClientImpl::getPluginList(bool refresh,
71 WebKit::WebPluginListBuilder* builder) { 77 WebKit::WebPluginListBuilder* builder) {
72 NOTREACHED(); 78 NOTREACHED();
73 } 79 }
74 80
75 WebKit::WebData BrowserWebKitClientImpl::loadResource(const char* name) { 81 WebKit::WebData BrowserWebKitClientImpl::loadResource(const char* name) {
76 NOTREACHED(); 82 NOTREACHED();
77 return WebKit::WebData(); 83 return WebKit::WebData();
78 } 84 }
OLDNEW
« no previous file with comments | « chrome/browser/in_process_webkit/browser_webkitclient_impl.h ('k') | chrome/browser/renderer_host/file_system_accessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698