// Copyright (c) 2012 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. #import #include "chrome/browser/extensions/bundle_installer.h" #include "chrome/browser/ui/browser.h" #include "chrome/browser/ui/browser_window.h" #import "chrome/browser/ui/cocoa/extensions/extension_installed_bubble_controller.h" #include "extensions/common/extension.h" #include "third_party/skia/include/core/SkBitmap.h" using extensions::BundleInstaller; namespace chrome { void ShowExtensionInstalledBubble(const extensions::Extension* extension, Browser* browser, const SkBitmap& icon) { // The controller is deallocated when the window is closed, so no need to // worry about it here. [[ExtensionInstalledBubbleController alloc] initWithParentWindow:browser->window()->GetNativeWindow() extension:extension bundle:NULL browser:browser icon:icon]; } } // namespace chrome void extensions::BundleInstaller::ShowInstalledBubble( const BundleInstaller* bundle, Browser* browser) { // The controller is deallocated when the window is closed, so no need to // worry about it here. [[ExtensionInstalledBubbleController alloc] initWithParentWindow:browser->window()->GetNativeWindow() extension:NULL bundle:bundle browser:browser icon:SkBitmap()]; }