blob: bf86a7e866530d0224429bfa8cb81805a46a646e [file] [log] [blame]
// Copyright 2019 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 A helper object used from the Chrome captions section to
* interact with the browser. Used on operating system that is not Chrome OS.
*/
cr.define('settings', function() {
/** @interface */
class CaptionsBrowserProxy {
/**
* Open the native captions system dialog.
*/
openSystemCaptionsDialog() {}
}
/**
* @implements {settings.CaptionsBrowserProxy}
*/
class CaptionsBrowserProxyImpl {
/** @override */
openSystemCaptionsDialog() {
chrome.send('openSystemCaptionsDialog');
}
}
cr.addSingletonGetter(CaptionsBrowserProxyImpl);
return {
CaptionsBrowserProxy: CaptionsBrowserProxy,
CaptionsBrowserProxyImpl: CaptionsBrowserProxyImpl,
};
});