OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |