| 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_blink_platform_impl.h" | 5 #include "content/ppapi_plugin/ppapi_blink_platform_impl.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 | 10 |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 } | 193 } |
| 194 | 194 |
| 195 blink::WebString PpapiBlinkPlatformImpl::cookies( | 195 blink::WebString PpapiBlinkPlatformImpl::cookies( |
| 196 const blink::WebURL& url, | 196 const blink::WebURL& url, |
| 197 const blink::WebURL& first_party_for_cookies) { | 197 const blink::WebURL& first_party_for_cookies) { |
| 198 NOTREACHED(); | 198 NOTREACHED(); |
| 199 return blink::WebString(); | 199 return blink::WebString(); |
| 200 } | 200 } |
| 201 | 201 |
| 202 blink::WebString PpapiBlinkPlatformImpl::defaultLocale() { | 202 blink::WebString PpapiBlinkPlatformImpl::defaultLocale() { |
| 203 NOTREACHED(); | 203 return blink::WebString::fromUTF8("en"); |
| 204 return blink::WebString(); | |
| 205 } | 204 } |
| 206 | 205 |
| 207 blink::WebThemeEngine* PpapiBlinkPlatformImpl::themeEngine() { | 206 blink::WebThemeEngine* PpapiBlinkPlatformImpl::themeEngine() { |
| 208 NOTREACHED(); | 207 NOTREACHED(); |
| 209 return NULL; | 208 return NULL; |
| 210 } | 209 } |
| 211 | 210 |
| 212 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() { | 211 blink::WebURLLoader* PpapiBlinkPlatformImpl::createURLLoader() { |
| 213 NOTREACHED(); | 212 NOTREACHED(); |
| 214 return NULL; | 213 return NULL; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 242 } | 241 } |
| 243 | 242 |
| 244 int PpapiBlinkPlatformImpl::databaseDeleteFile( | 243 int PpapiBlinkPlatformImpl::databaseDeleteFile( |
| 245 const blink::WebString& vfs_file_name, | 244 const blink::WebString& vfs_file_name, |
| 246 bool sync_dir) { | 245 bool sync_dir) { |
| 247 NOTREACHED(); | 246 NOTREACHED(); |
| 248 return 0; | 247 return 0; |
| 249 } | 248 } |
| 250 | 249 |
| 251 } // namespace content | 250 } // namespace content |
| OLD | NEW |