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');
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
;