Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5943)

Unified Diff: chrome/browser/extensions/api/file_system/file_system_api.h

Issue 2951003002: SavedFilesService interface in //extensions (Closed)
Patch Set: cleanup Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/file_system/file_system_api.h
diff --git a/chrome/browser/extensions/api/file_system/file_system_api.h b/chrome/browser/extensions/api/file_system/file_system_api.h
index f65f4183c3267efacc3c3a84a61ff4f836364c12..d578085ac192b96c34b57985a64cccfad044aa41 100644
--- a/chrome/browser/extensions/api/file_system/file_system_api.h
+++ b/chrome/browser/extensions/api/file_system/file_system_api.h
@@ -196,10 +196,10 @@ class FileSystemRetainEntryFunction : public ChromeAsyncExtensionFunction {
bool RunAsync() override;
private:
- // Retains the file entry referenced by |entry_id| in apps::SavedFilesService.
- // |entry_id| must refer to an entry in an isolated file system. |path| is a
- // path of the entry. |file_info| is base::File::Info of the entry if it can
- // be obtained.
+ // Retains the file entry referenced by |entry_id| in
+ // apps::SavedFilesServiceImpl. |entry_id| must refer to an entry in an
+ // isolated file system. |path| is a path of the entry. |file_info| is
+ // base::File::Info of the entry if it can be obtained.
void RetainFileEntry(const std::string& entry_id,
const base::FilePath& path,
std::unique_ptr<base::File::Info> file_info);

Powered by Google App Engine
This is Rietveld 408576698