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 "chrome/browser/chromeos/gdata/find_entry_callback.h" | 5 #include "chrome/browser/chromeos/gdata/find_entry_callback.h" |
6 | 6 |
7 namespace gdata { | 7 namespace gdata { |
8 | 8 |
9 void ReadOnlyFindEntryCallback(GDataEntry** out, | 9 void ReadOnlyFindEntryCallback(GDataEntry** out, |
10 base::PlatformFileError error, | 10 base::PlatformFileError error, |
| 11 const FilePath& directory_path, |
11 GDataEntry* entry) { | 12 GDataEntry* entry) { |
12 if (error == base::PLATFORM_FILE_OK) | 13 if (error == base::PLATFORM_FILE_OK) |
13 *out = entry; | 14 *out = entry; |
14 } | 15 } |
15 | 16 |
16 } // namespace gdata | 17 } // namespace gdata |
OLD | NEW |