Only grant permissions to new extensions from sync if they have the expected version
[chromium-blink-merge.git] / chrome / browser / resources / password_manager_internals / password_manager_internals.js
blobca5637e01b5af1eeba3bc46821982728d731fbc4
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 function addSavePasswordProgressLog(logText) {
6   var logDiv = $('log-entries');
7   if (!logDiv)
8     return;
9   logDiv.appendChild(document.createElement('hr'));
10   var textDiv = document.createElement('div');
11   textDiv.innerText = logText;
12   logDiv.appendChild(textDiv);
15 function notifyAboutIncognito(isIncognito) {
16   document.body.dataset.incognito = isIncognito;