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

Side by Side Diff: content/ppapi_plugin/ppapi_webkitplatformsupport_impl.cc

Issue 21043002: remove implementation of obsolete WebKitPlatformSupport::prefetchHostName. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 7 years, 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h" 5 #include "content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 NOTREACHED(); 199 NOTREACHED();
200 } 200 }
201 201
202 WebKit::WebString PpapiWebKitPlatformSupportImpl::cookies( 202 WebKit::WebString PpapiWebKitPlatformSupportImpl::cookies(
203 const WebKit::WebURL& url, 203 const WebKit::WebURL& url,
204 const WebKit::WebURL& first_party_for_cookies) { 204 const WebKit::WebURL& first_party_for_cookies) {
205 NOTREACHED(); 205 NOTREACHED();
206 return WebKit::WebString(); 206 return WebKit::WebString();
207 } 207 }
208 208
209 void PpapiWebKitPlatformSupportImpl::prefetchHostName(
210 const WebKit::WebString&) {
211 NOTREACHED();
212 }
213
214 WebKit::WebString PpapiWebKitPlatformSupportImpl::defaultLocale() { 209 WebKit::WebString PpapiWebKitPlatformSupportImpl::defaultLocale() {
215 NOTREACHED(); 210 NOTREACHED();
216 return WebKit::WebString(); 211 return WebKit::WebString();
217 } 212 }
218 213
219 WebKit::WebThemeEngine* PpapiWebKitPlatformSupportImpl::themeEngine() { 214 WebKit::WebThemeEngine* PpapiWebKitPlatformSupportImpl::themeEngine() {
220 NOTREACHED(); 215 NOTREACHED();
221 return NULL; 216 return NULL;
222 } 217 }
223 218
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 NOTREACHED(); 250 NOTREACHED();
256 } 251 }
257 252
258 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( 253 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile(
259 const WebKit::WebString& vfs_file_name, bool sync_dir) { 254 const WebKit::WebString& vfs_file_name, bool sync_dir) {
260 NOTREACHED(); 255 NOTREACHED();
261 return 0; 256 return 0;
262 } 257 }
263 258
264 } // namespace content 259 } // namespace content
OLDNEW
« no previous file with comments | « content/ppapi_plugin/ppapi_webkitplatformsupport_impl.h ('k') | content/public/renderer/content_renderer_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698