| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/renderer/pepper/null_file_system_callback_dispatcher.h" | 5 #include "content/renderer/pepper/null_file_system_callback_dispatcher.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/files/file_util_proxy.h" | 8 #include "base/files/file_util_proxy.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "googleurl/src/gurl.h" | 10 #include "googleurl/src/gurl.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 NOTREACHED(); | 39 NOTREACHED(); |
| 40 } | 40 } |
| 41 | 41 |
| 42 void NullFileSystemCallbackDispatcher::DidWrite(int64 /* bytes */, | 42 void NullFileSystemCallbackDispatcher::DidWrite(int64 /* bytes */, |
| 43 bool /* complete */) { | 43 bool /* complete */) { |
| 44 NOTREACHED(); | 44 NOTREACHED(); |
| 45 } | 45 } |
| 46 | 46 |
| 47 void NullFileSystemCallbackDispatcher::DidOpenFile( | 47 void NullFileSystemCallbackDispatcher::DidOpenFile( |
| 48 base::PlatformFile /* file */, | 48 base::PlatformFile /* file */, |
| 49 int /* file_open_id */, |
| 49 quota::QuotaLimitType /* quota_policy */) { | 50 quota::QuotaLimitType /* quota_policy */) { |
| 50 NOTREACHED(); | 51 NOTREACHED(); |
| 51 } | 52 } |
| 52 | 53 |
| 53 void NullFileSystemCallbackDispatcher::DidFail( | 54 void NullFileSystemCallbackDispatcher::DidFail( |
| 54 base::PlatformFileError /* platform_error */) { | 55 base::PlatformFileError /* platform_error */) { |
| 55 NOTREACHED(); | 56 NOTREACHED(); |
| 56 } | 57 } |
| 57 | 58 |
| 58 } // namespace content | 59 } // namespace content |
| OLD | NEW |