| 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) {};
|
|
|