Home | History | Annotate | Download | only in stub

Lines Matching refs:cf

12 goog.provide('google.cf.installer.CFInstall');
14 goog.require('google.cf.ChromeFrame');
15 goog.require('google.cf.installer.InlineDelegate');
16 goog.require('google.cf.installer.Installer');
17 goog.require('google.cf.installer.OverlayDelegate');
18 goog.require('google.cf.installer.Prompt');
25 google.cf.installer.CFInstall = function() {
26 this.prompt_ = new google.cf.installer.Prompt();
27 this.chromeFrame_ = new google.cf.ChromeFrame();
28 this.installer_ = new google.cf.installer.Installer(
48 google.cf.installer.CFInstall.isDeclined_ = function() {
63 google.cf.installer.CFInstall.prototype['check'] = function(args) {
75 if (google.cf.installer.CFInstall.isDeclined_() || args['preventPrompt'])
87 new google.cf.installer.InlineDelegate(args));
90 new google.cf.installer.OverlayDelegate(args));
115 arguments[0]['CFInstall'] = new google.cf.installer.CFInstall();
117 window['CFInstall'] = new google.cf.installer.CFInstall();