Remove the old signature of NotificationManager::closePersistent().
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / login / host-pairing-screen.js
blobbfeed107a79ae5a3d333d22a49c7aa2c12b71556
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 Polymer('host-pairing-screen', (function() {
6   'use strict';
8   /** @const */ var CALLBACK_CONTEXT_READY = 'contextReady';
10   return {
11     onBeforeShow: function() {
12       Oobe.getInstance().headerHidden = true;
13     },
15     /** @override */
16     initialize: function() {
17       this.send(CALLBACK_CONTEXT_READY);
18     }
19   };
20 })());