summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/settings/plugin_vm_page/plugin_vm_subpage.js
blob: 47f27372a896c08ad95756c3b3ffb456aab93d95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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
 * 'plugin-vm-subpage' is the settings subpage for managing Plugin VM.
 */

Polymer({
  is: 'settings-plugin-vm-subpage',

  properties: {
    /** Preferences state. */
    prefs: {
      type: Object,
      notify: true,
    },
  },

  /** @private */
  onSharedPathsClick_: function() {
    settings.navigateTo(settings.routes.PLUGIN_VM_SHARED_PATHS);
  },
});