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

Unified Diff: chrome/browser/resources/md_bookmarks/types.js

Issue 2731473002: MD Bookmarks: Implement basis for new data-binding system (Closed)
Patch Set: calamity@ review Created 3 years, 10 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/resources/md_bookmarks/types.js
diff --git a/chrome/browser/resources/md_bookmarks/types.js b/chrome/browser/resources/md_bookmarks/types.js
new file mode 100644
index 0000000000000000000000000000000000000000..3889578e430a28b4f2fd1b46edd9d5f50be4931c
--- /dev/null
+++ b/chrome/browser/resources/md_bookmarks/types.js
@@ -0,0 +1,19 @@
+// 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.
+
+/**
+ * @fileoverview Closure typedefs for MD Bookmarks.
+ */
+
+/** @typedef {!Object} */
+var BookmarksPageState;
+
+/** @typedef {{name: string}} */
+var Action;
+
+/** @interface */
+function StoreObserver(){};
+
+/** @param {!BookmarksPageState} newState */
+StoreObserver.prototype.onStateChanged = function(newState) {};
« no previous file with comments | « chrome/browser/resources/md_bookmarks/store_client.js ('k') | chrome/browser/ui/webui/md_bookmarks/md_bookmarks_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698