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

Unified Diff: chrome/test/data/file_manager/unit_tests/mocks/mock_file_entry.js

Issue 48623002: [Files.app] Add an unittest of NavigationListModel (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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/test/data/file_manager/unit_tests/mocks/mock_file_entry.js
diff --git a/chrome/test/data/file_manager/unit_tests/mocks/mock_file_entry.js b/chrome/test/data/file_manager/unit_tests/mocks/mock_file_entry.js
new file mode 100644
index 0000000000000000000000000000000000000000..a32bc720a6d238c9ea772df33f53bebbd4875c31
--- /dev/null
+++ b/chrome/test/data/file_manager/unit_tests/mocks/mock_file_entry.js
@@ -0,0 +1,10 @@
+// Copyright 2013 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.
+
+/**
+ * Mock class for FileEntry.
mtomasz 2013/10/29 07:28:17 nit: @constructor is missing
yoshiki 2013/10/31 09:07:23 Done.
+ */
+function MockFileEntry() {
+ this.fullPath = null;
+}

Powered by Google App Engine
This is Rietveld 408576698