Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/renderer/pepper/null_file_system_callback_dispatcher.h" | |
| 6 | |
| 7 #include "base/files/file_path.h" | |
| 8 #include "base/files/file_util_proxy.h" | |
| 9 #include "base/logging.h" | |
| 10 #include "googleurl/src/gurl.h" | |
| 11 | |
| 12 namespace content { | |
| 13 | |
| 14 void NullFileSystemCallbackDispatcher::DidSucceed() { | |
| 15 NOTREACHED(); | |
| 16 } | |
| 17 | |
| 18 void NullFileSystemCallbackDispatcher::DidReadMetadata( | |
| 19 const base::PlatformFileInfo& file_info, | |
|
yzshen1
2013/04/11 17:04:57
You probably should put /**/ around parameters to
victorhsieh
2013/04/11 18:24:38
Done.
| |
| 20 const base::FilePath& platform_path) { | |
| 21 NOTREACHED(); | |
| 22 } | |
| 23 | |
| 24 void NullFileSystemCallbackDispatcher::DidCreateSnapshotFile( | |
| 25 const base::PlatformFileInfo& file_info, | |
| 26 const base::FilePath& platform_path) { | |
| 27 NOTREACHED(); | |
| 28 } | |
| 29 | |
| 30 void NullFileSystemCallbackDispatcher::DidReadDirectory( | |
| 31 const std::vector<base::FileUtilProxy::Entry>& entries, | |
| 32 bool has_more) { | |
| 33 NOTREACHED(); | |
| 34 } | |
| 35 | |
| 36 void NullFileSystemCallbackDispatcher::DidOpenFileSystem( | |
| 37 const std::string& name, | |
| 38 const GURL& root) { | |
| 39 NOTREACHED(); | |
| 40 } | |
| 41 | |
| 42 void NullFileSystemCallbackDispatcher::DidWrite(int64 bytes, bool complete) { | |
| 43 NOTREACHED(); | |
| 44 } | |
| 45 | |
| 46 void NullFileSystemCallbackDispatcher::DidOpenFile(base::PlatformFile file) { | |
| 47 NOTREACHED(); | |
| 48 } | |
| 49 | |
| 50 void NullFileSystemCallbackDispatcher::DidFail( | |
| 51 base::PlatformFileError platform_error) { | |
| 52 NOTREACHED(); | |
| 53 } | |
| 54 | |
| 55 } // namespace content | |
| OLD | NEW |