Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2033)

Unified Diff: chrome/browser/extensions/extension_popup_api.h

Issue 6334101: Removal of chrome.experimental.popup set of APIs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_popup_api.h
===================================================================
--- chrome/browser/extensions/extension_popup_api.h (revision 74596)
+++ chrome/browser/extensions/extension_popup_api.h (working copy)
@@ -1,52 +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.
-
-#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_POPUP_API_H_
-#define CHROME_BROWSER_EXTENSIONS_EXTENSION_POPUP_API_H_
-#pragma once
-
-#include "chrome/browser/extensions/extension_function.h"
-#include "chrome/common/notification_observer.h"
-#include "chrome/common/notification_registrar.h"
-
-class Profile;
-class ExtensionPopup;
-
-// This extension function shows a pop-up extension view. It is asynchronous
-// because the callback must be invoked only after the associated render
-// process/view has been created and fully initialized.
-class PopupShowFunction : public AsyncExtensionFunction,
- public NotificationObserver {
- public:
- PopupShowFunction();
-
- virtual void Run();
- virtual bool RunImpl();
- DECLARE_EXTENSION_FUNCTION_NAME("experimental.popup.show")
-
- private:
- // NotificationObserver methods.
- virtual void Observe(NotificationType type,
- const NotificationSource& source,
- const NotificationDetails& details);
- NotificationRegistrar registrar_;
-
-#if defined(TOOLKIT_VIEWS)
- // The pop-up view created by this function, saved for access during
- // event notification. The pop-up is not owned by the PopupShowFunction
- // instance.
- ExtensionPopup* popup_;
-#endif
-};
-
-// Event router class for events related to the chrome.popup.* set of APIs.
-class PopupEventRouter {
- public:
- static void OnPopupClosed(Profile* profile,
- int routing_id);
- private:
- DISALLOW_COPY_AND_ASSIGN(PopupEventRouter);
-};
-
-#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_POPUP_API_H_
« no previous file with comments | « chrome/browser/extensions/extension_function_dispatcher.cc ('k') | chrome/browser/extensions/extension_popup_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698