summaryrefslogtreecommitdiffstats
path: root/chrome_frame/CFInstall.js
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-02 14:47:14 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-02 14:47:14 +0000
commitca982ec4920857adf2d22a5a92cc54829718d805 (patch)
tree36664a2941699fdbd6655075ea1818e73c2b752e /chrome_frame/CFInstall.js
parent84ae53dda0bc194ca7dda812bd5d5b535e4afaab (diff)
downloadchromium_src-ca982ec4920857adf2d22a5a92cc54829718d805.zip
chromium_src-ca982ec4920857adf2d22a5a92cc54829718d805.tar.gz
chromium_src-ca982ec4920857adf2d22a5a92cc54829718d805.tar.bz2
Fixes to address code review comments from tommi from CL http://codereview.chromium.org/1823001/show
Changes include the following:- 1. Removing the IObjectWithSite::SetSite implementation from the chrome frame activex. 2. Removing the site_ member and using the ATL m_spUnkSite member. 3. Renaming the RegisterBHOIfNeeded member function to registerBhoIfNeeded to be consistent with the other methods in the IChromeFrame interface. Fixes bug http://code.google.com/p/chromium/issues/detail?id=42790 Bug=42790 TBR=tommi Review URL: http://codereview.chromium.org/1831001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46200 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/CFInstall.js')
-rw-r--r--chrome_frame/CFInstall.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/CFInstall.js b/chrome_frame/CFInstall.js
index 5f2efdf..98c70f4 100644
--- a/chrome_frame/CFInstall.js
+++ b/chrome_frame/CFInstall.js
@@ -49,7 +49,7 @@
try {
var obj = new ActiveXObject('ChromeTab.ChromeFrame');
if (obj) {
- obj.RegisterBHOIfNeeded();
+ obj.registerBhoIfNeeded();
return true;
}
} catch(e) {