diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-03 01:17:27 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-03 01:17:27 +0000 |
commit | c50008518aa19574ce694d280d3a7947dd150d91 (patch) | |
tree | 4206aed59cc75943e6255a2161ba7364463b1242 /chrome/browser/resources | |
parent | fb3d0321d7aa47b273a50d4ac8e9e92c791f81b9 (diff) | |
download | chromium_src-c50008518aa19574ce694d280d3a7947dd150d91.zip chromium_src-c50008518aa19574ce694d280d3a7947dd150d91.tar.gz chromium_src-c50008518aa19574ce694d280d3a7947dd150d91.tar.bz2 |
WebUI: Rename DOMUIBindings to WebUIBindings.
BUG=59945
TEST=trybots
Review URL: http://codereview.chromium.org/6368061
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73570 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
-rw-r--r-- | chrome/browser/resources/extensions_ui.html | 2 | ||||
-rw-r--r-- | chrome/browser/resources/options/certificate_edit_ca_trust_overlay.js | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/resources/extensions_ui.html b/chrome/browser/resources/extensions_ui.html index 5e92d43..cdcd5b0 100644 --- a/chrome/browser/resources/extensions_ui.html +++ b/chrome/browser/resources/extensions_ui.html @@ -535,7 +535,7 @@ function returnExtensionsData(extensionsData){ * Tell the C++ ExtensionDOMHandler to inspect the page detailed in |viewData|. */ function sendInspectMessage(viewData) { - // TODO(aa): This is ghetto, but DOMUIBindings doesn't support sending + // TODO(aa): This is ghetto, but WebUIBindings doesn't support sending // anything other than arrays of strings, and this is all going to get // replaced with V8 extensions soon anyway. chrome.send('inspect', [ diff --git a/chrome/browser/resources/options/certificate_edit_ca_trust_overlay.js b/chrome/browser/resources/options/certificate_edit_ca_trust_overlay.js index bcea4e3..98bc282 100644 --- a/chrome/browser/resources/options/certificate_edit_ca_trust_overlay.js +++ b/chrome/browser/resources/options/certificate_edit_ca_trust_overlay.js @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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. @@ -49,7 +49,7 @@ cr.define('options', function() { */ finishEdit_: function() { // TODO(mattm): Send checked values as booleans. For now send them as - // strings, since DOMUIBindings::send does not support any other types :( + // strings, since WebUIBindings::send does not support any other types :( chrome.send('editCaCertificateTrust', [this.certId, $('certificateCaTrustSSLCheckbox').checked.toString(), @@ -74,7 +74,7 @@ cr.define('options', function() { */ finishImport_: function() { // TODO(mattm): Send checked values as booleans. For now send them as - // strings, since DOMUIBindings::send does not support any other types :( + // strings, since WebUIBindings::send does not support any other types :( chrome.send('importCaCertificateTrustSelected', [$('certificateCaTrustSSLCheckbox').checked.toString(), $('certificateCaTrustEmailCheckbox').checked.toString(), |