| Index: chrome/browser/resources/cryptotoken/closeable.js
|
| diff --git a/chrome/browser/resources/cryptotoken/closeable.js b/chrome/browser/resources/cryptotoken/closeable.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f29a7d44eaad06a05d115ead89b7b52c824416a1
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/cryptotoken/closeable.js
|
| @@ -0,0 +1,18 @@
|
| +// Copyright (c) 2014 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 Defines a Closeable interface.
|
| + * @author juanlang@google.com (Juan Lang)
|
| + */
|
| +'use strict';
|
| +
|
| +/**
|
| + * A closeable interface.
|
| + * @interface
|
| + */
|
| +function Closeable() {}
|
| +
|
| +/** Closes this object. */
|
| +Closeable.prototype.close = function() {};
|
|
|