summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/extension_installed_bubble_bridge.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/cocoa/extension_installed_bubble_bridge.h')
-rw-r--r--chrome/browser/cocoa/extension_installed_bubble_bridge.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/chrome/browser/cocoa/extension_installed_bubble_bridge.h b/chrome/browser/cocoa/extension_installed_bubble_bridge.h
deleted file mode 100644
index d878d70..0000000
--- a/chrome/browser/cocoa/extension_installed_bubble_bridge.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (c) 2010 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.
-
-// C++ bridge function to connect ExtensionInstallUI to the Cocoa-based
-// extension installed bubble.
-
-#ifndef CHROME_BROWSER_COCOA_EXTENSION_INSTALLED_BUBBLE_BRIDGE_H_
-#define CHROME_BROWSER_COCOA_EXTENSION_INSTALLED_BUBBLE_BRIDGE_H_
-#pragma once
-
-#include "gfx/native_widget_types.h"
-#include "third_party/skia/include/core/SkBitmap.h"
-
-class Browser;
-class Extension;
-
-namespace ExtensionInstalledBubbleCocoa {
-
-// This function is called by the ExtensionInstallUI when an extension has been
-// installed.
-void ShowExtensionInstalledBubble(gfx::NativeWindow window,
- const Extension* extension,
- Browser* browser,
- SkBitmap icon);
-}
-
-#endif // CHROME_BROWSER_COCOA_EXTENSION_INSTALLED_BUBBLE_BRIDGE_H_