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

Unified Diff: extensions/browser/api/file_system/saved_file_entry.cc

Issue 2960433002: SavedFilesServiceInterface in //extensions (Closed)
Patch Set: rebase 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: extensions/browser/api/file_system/saved_file_entry.cc
diff --git a/extensions/browser/api/file_system/saved_file_entry.cc b/extensions/browser/api/file_system/saved_file_entry.cc
new file mode 100644
index 0000000000000000000000000000000000000000..77a65308ee29a781b4a612816ef991431abb7860
--- /dev/null
+++ b/extensions/browser/api/file_system/saved_file_entry.cc
@@ -0,0 +1,20 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "extensions/browser/api/file_system/saved_file_entry.h"
+
+namespace extensions {
+
+SavedFileEntry::SavedFileEntry() : is_directory(false), sequence_number(0) {}
+
+SavedFileEntry::SavedFileEntry(const std::string& id,
+ const base::FilePath& path,
+ bool is_directory,
+ int sequence_number)
+ : id(id),
+ path(path),
+ is_directory(is_directory),
+ sequence_number(sequence_number) {}
+
+} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698