Give names to all utility processes.
[chromium-blink-merge.git] / chrome / browser / resources / password_manager_internals / password_manager_internals.js
blob73aab6dde953deb86ee838ab4249b1c3f4a63bb2
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);