| 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/pepper_directory_reader_host.h" | 5 #include "content/renderer/pepper/pepper_directory_reader_host.h" |
| 6 | 6 |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "content/public/renderer/renderer_ppapi_host.h" | 10 #include "content/public/renderer/renderer_ppapi_host.h" |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 virtual void DidSucceed() OVERRIDE { | 61 virtual void DidSucceed() OVERRIDE { |
| 62 NOTREACHED(); | 62 NOTREACHED(); |
| 63 } | 63 } |
| 64 | 64 |
| 65 virtual void DidReadMetadata(const base::PlatformFileInfo& file_info, | 65 virtual void DidReadMetadata(const base::PlatformFileInfo& file_info, |
| 66 const base::FilePath& platform_path) OVERRIDE { | 66 const base::FilePath& platform_path) OVERRIDE { |
| 67 NOTREACHED(); | 67 NOTREACHED(); |
| 68 } | 68 } |
| 69 | 69 |
| 70 virtual void DidCreateSnapshotFile( |
| 71 const base::PlatformFileInfo& file_info, |
| 72 const base::FilePath& platform_path) OVERRIDE { |
| 73 NOTREACHED(); |
| 74 } |
| 75 |
| 70 virtual void DidReadDirectory( | 76 virtual void DidReadDirectory( |
| 71 const std::vector<base::FileUtilProxy::Entry>& entries, | 77 const std::vector<base::FileUtilProxy::Entry>& entries, |
| 72 bool has_more) OVERRIDE { | 78 bool has_more) OVERRIDE { |
| 73 callback_.Run(entries, has_more, PP_OK); | 79 callback_.Run(entries, has_more, PP_OK); |
| 74 } | 80 } |
| 75 | 81 |
| 76 virtual void DidOpenFileSystem(const std::string& name, | 82 virtual void DidOpenFileSystem(const std::string& name, |
| 77 const GURL& root) OVERRIDE { | 83 const GURL& root) OVERRIDE { |
| 78 NOTREACHED(); | 84 NOTREACHED(); |
| 79 } | 85 } |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 file_types)); | 208 file_types)); |
| 203 } | 209 } |
| 204 | 210 |
| 205 PepperDirectoryReaderHost::EntryData::EntryData() { | 211 PepperDirectoryReaderHost::EntryData::EntryData() { |
| 206 } | 212 } |
| 207 | 213 |
| 208 PepperDirectoryReaderHost::EntryData::~EntryData() { | 214 PepperDirectoryReaderHost::EntryData::~EntryData() { |
| 209 } | 215 } |
| 210 | 216 |
| 211 } // namespace content | 217 } // namespace content |
| OLD | NEW |