| 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/browser/in_process_webkit/browser_webkitplatformsupport_impl.h
" | 5 #include "content/browser/in_process_webkit/browser_webkitplatformsupport_impl.h
" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" | 9 #include "content/browser/gpu/browser_gpu_channel_host_factory.h" |
| 10 #include "content/public/common/serialized_script_value.h" | 10 #include "content/public/common/serialized_script_value.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 } | 110 } |
| 111 | 111 |
| 112 WebKit::WebData BrowserWebKitPlatformSupportImpl::loadResource( | 112 WebKit::WebData BrowserWebKitPlatformSupportImpl::loadResource( |
| 113 const char* name) { | 113 const char* name) { |
| 114 NOTREACHED(); | 114 NOTREACHED(); |
| 115 return WebKit::WebData(); | 115 return WebKit::WebData(); |
| 116 } | 116 } |
| 117 | 117 |
| 118 int BrowserWebKitPlatformSupportImpl::databaseDeleteFile( | 118 int BrowserWebKitPlatformSupportImpl::databaseDeleteFile( |
| 119 const WebKit::WebString& vfs_file_name, bool sync_dir) { | 119 const WebKit::WebString& vfs_file_name, bool sync_dir) { |
| 120 const FilePath path = webkit_base::WebStringToFilePath(vfs_file_name); | 120 const base::FilePath path = webkit_base::WebStringToFilePath(vfs_file_name); |
| 121 return file_util::Delete(path, false) ? 0 : 1; | 121 return file_util::Delete(path, false) ? 0 : 1; |
| 122 } | 122 } |
| 123 | 123 |
| 124 GpuChannelHostFactory* | 124 GpuChannelHostFactory* |
| 125 BrowserWebKitPlatformSupportImpl::GetGpuChannelHostFactory() { | 125 BrowserWebKitPlatformSupportImpl::GetGpuChannelHostFactory() { |
| 126 return BrowserGpuChannelHostFactory::instance(); | 126 return BrowserGpuChannelHostFactory::instance(); |
| 127 } | 127 } |
| 128 | 128 |
| 129 } // namespace content | 129 } // namespace content |
| OLD | NEW |