| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 NOTREACHED(); | 176 NOTREACHED(); |
| 177 return 0; | 177 return 0; |
| 178 } | 178 } |
| 179 | 179 |
| 180 bool PpapiWebKitPlatformSupportImpl::isLinkVisited( | 180 bool PpapiWebKitPlatformSupportImpl::isLinkVisited( |
| 181 unsigned long long link_hash) { | 181 unsigned long long link_hash) { |
| 182 NOTREACHED(); | 182 NOTREACHED(); |
| 183 return false; | 183 return false; |
| 184 } | 184 } |
| 185 | 185 |
| 186 blink::WebMessagePortChannel* | 186 void PpapiWebKitPlatformSupportImpl::createMessageChannel( |
| 187 PpapiWebKitPlatformSupportImpl::createMessagePortChannel() { | 187 blink::WebMessagePortChannel** channel1, |
| 188 blink::WebMessagePortChannel** channel2) { |
| 188 NOTREACHED(); | 189 NOTREACHED(); |
| 189 return NULL; | 190 *channel1 = NULL; |
| 191 *channel2 = NULL; |
| 190 } | 192 } |
| 191 | 193 |
| 192 void PpapiWebKitPlatformSupportImpl::setCookies( | 194 void PpapiWebKitPlatformSupportImpl::setCookies( |
| 193 const blink::WebURL& url, | 195 const blink::WebURL& url, |
| 194 const blink::WebURL& first_party_for_cookies, | 196 const blink::WebURL& first_party_for_cookies, |
| 195 const blink::WebString& value) { | 197 const blink::WebString& value) { |
| 196 NOTREACHED(); | 198 NOTREACHED(); |
| 197 } | 199 } |
| 198 | 200 |
| 199 blink::WebString PpapiWebKitPlatformSupportImpl::cookies( | 201 blink::WebString PpapiWebKitPlatformSupportImpl::cookies( |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 NOTREACHED(); | 249 NOTREACHED(); |
| 248 } | 250 } |
| 249 | 251 |
| 250 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( | 252 int PpapiWebKitPlatformSupportImpl::databaseDeleteFile( |
| 251 const blink::WebString& vfs_file_name, bool sync_dir) { | 253 const blink::WebString& vfs_file_name, bool sync_dir) { |
| 252 NOTREACHED(); | 254 NOTREACHED(); |
| 253 return 0; | 255 return 0; |
| 254 } | 256 } |
| 255 | 257 |
| 256 } // namespace content | 258 } // namespace content |
| OLD | NEW |