Home
last modified time | relevance | path

Searched refs:BundleInstaller (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/chrome/browser/extensions/
Dbundle_installer.cc46 scoped_refptr<Extension> CreateDummyExtension(const BundleInstaller::Item& item, in CreateDummyExtension()
92 void BundleInstaller::SetAutoApproveForTesting(bool auto_approve) { in SetAutoApproveForTesting()
97 BundleInstaller::Item::Item() : state(STATE_PENDING) {} in Item()
99 base::string16 BundleInstaller::Item::GetNameForDisplay() { in GetNameForDisplay()
105 BundleInstaller::BundleInstaller(Browser* browser, in BundleInstaller() function in extensions::BundleInstaller
106 const BundleInstaller::ItemList& items) in BundleInstaller()
119 BundleInstaller::ItemList BundleInstaller::GetItemsWithState( in GetItemsWithState()
131 void BundleInstaller::PromptForApproval(Delegate* delegate) { in PromptForApproval()
139 void BundleInstaller::CompleteInstall(NavigationController* controller, in CompleteInstall()
179 base::string16 BundleInstaller::GetHeadingTextFor(Item::State state) const { in GetHeadingTextFor()
[all …]
Dbundle_installer.h40 class BundleInstaller : public WebstoreInstallHelper::Delegate,
44 public base::RefCountedThreadSafe<BundleInstaller> {
82 BundleInstaller(Browser* browser, const ItemList& items);
115 friend class base::RefCountedThreadSafe<BundleInstaller>;
120 virtual ~BundleInstaller();
124 static void ShowInstalledBubble(const BundleInstaller* bundle,
201 DISALLOW_COPY_AND_ASSIGN(BundleInstaller);
Dextension_install_prompt.h41 class BundleInstaller; variable
135 const extensions::BundleInstaller* bundle() const { return bundle_; } in bundle()
136 void set_bundle(const extensions::BundleInstaller* bundle) { in set_bundle()
176 const extensions::BundleInstaller* bundle_;
270 extensions::BundleInstaller* bundle,
399 const extensions::BundleInstaller* bundle_;
Dextension_install_prompt.cc48 using extensions::BundleInstaller;
290 return bundle_->GetHeadingTextFor(BundleInstaller::Item::STATE_PENDING); in GetHeading()
556 extensions::BundleInstaller* bundle, in ConfirmBundleInstall()
/external/chromium_org/chrome/browser/ui/gtk/extensions/
Dbundle_installed_bubble_gtk.cc25 using extensions::BundleInstaller;
47 void BundleInstaller::ShowInstalledBubble( in ShowInstalledBubble()
48 const BundleInstaller* bundle, Browser* browser) { in ShowInstalledBubble()
53 const BundleInstaller* bundle, Browser* browser) in BundleInstalledBubbleGtk()
62 void BundleInstalledBubbleGtk::ShowInternal(const BundleInstaller* bundle) { in ShowInternal()
82 text_column, bundle, BundleInstaller::Item::STATE_INSTALLED); in ShowInternal()
83 InsertExtensionList(text_column, bundle, BundleInstaller::Item::STATE_FAILED); in ShowInternal()
109 const BundleInstaller* bundle, in InsertExtensionList()
110 BundleInstaller::Item::State state) { in InsertExtensionList()
112 BundleInstaller::ItemList items = bundle->GetItemsWithState(state); in InsertExtensionList()
Dbundle_installed_bubble_gtk.h24 BundleInstalledBubbleGtk(const extensions::BundleInstaller* bundle,
33 void ShowInternal(const extensions::BundleInstaller* bundle);
38 const extensions::BundleInstaller* bundle,
39 extensions::BundleInstaller::Item::State state);
Dextension_install_dialog_gtk.cc29 using extensions::BundleInstaller;
238 BundleInstaller::ItemList items = prompt.bundle()->GetItemsWithState( in ExtensionInstallDialog()
239 BundleInstaller::Item::STATE_PENDING); in ExtensionInstallDialog()
/external/chromium_org/chrome/browser/ui/views/extensions/
Dbundle_installed_bubble.cc24 using extensions::BundleInstaller;
38 BundleInstalledBubble(const BundleInstaller* bundle, in BundleInstalledBubble()
68 void AddContent(GridLayout* layout, const BundleInstaller* bundle) { in AddContent()
70 BundleInstaller::Item::STATE_INSTALLED); in AddContent()
72 BundleInstaller::Item::STATE_FAILED); in AddContent()
80 BundleInstaller::Item::STATE_INSTALLED)); in AddContent()
98 BundleInstaller::Item::STATE_FAILED)); in AddContent()
105 void AddItemList(GridLayout* layout, const BundleInstaller::ItemList& items) { in AddItemList()
155 void BundleInstaller::ShowInstalledBubble( in ShowInstalledBubble()
156 const BundleInstaller* bundle, Browser* browser) { in ShowInstalledBubble()
Dextension_install_dialog_view.cc49 using extensions::BundleInstaller;
468 BundleInstaller::ItemList items = prompt.bundle()->GetItemsWithState( in ExtensionInstallDialogView()
469 BundleInstaller::Item::STATE_PENDING); in ExtensionInstallDialogView()
/external/chromium_org/chrome/browser/ui/cocoa/extensions/
Dextension_installed_bubble_controller.h22 class BundleInstaller; variable
61 const extensions::BundleInstaller* bundle_; // weak
103 @property(nonatomic, readonly) const extensions::BundleInstaller* bundle;
110 bundle:(const extensions::BundleInstaller*)bundle
Dextension_installed_bubble_bridge.mm14 using extensions::BundleInstaller;
33 void extensions::BundleInstaller::ShowInstalledBubble(
34 const BundleInstaller* bundle, Browser* browser) {
Dextension_installed_bubble_controller.mm51 using extensions::BundleInstaller;
110 bundle:(const BundleInstaller*)bundle
422 state:BundleInstaller::Item::STATE_INSTALLED];
427 state:BundleInstaller::Item::STATE_FAILED];
550 state:(BundleInstaller::Item::State)state {
562 BundleInstaller::ItemList items = bundle_->GetItemsWithState(state);
Dextension_install_view_controller.mm29 using extensions::BundleInstaller;
295 BundleInstaller::ItemList items = prompt_->bundle()->GetItemsWithState(
296 BundleInstaller::Item::STATE_PENDING);
/external/chromium_org/chrome/browser/extensions/api/webstore_private/
Dwebstore_private_api.h48 public extensions::BundleInstaller::Delegate {
69 extensions::BundleInstaller::ItemList* items);
72 scoped_refptr<extensions::BundleInstaller> bundle_;
Dwebstore_private_api.cc214 BundleInstaller::ItemList items; in RunImpl()
218 bundle_ = new BundleInstaller(GetCurrentBrowser(), items); in RunImpl()
228 BundleInstaller::ItemList* items) { in ReadBundleInfo()
230 BundleInstaller::Item item; in ReadBundleInfo()