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

Unified Diff: chrome_frame/chrome_frame_npapi.h

Issue 6756044: Remove extension automation support that was used only by CEEE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to lkgr. Created 9 years, 9 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_frame/chrome_frame_npapi.h
diff --git a/chrome_frame/chrome_frame_npapi.h b/chrome_frame/chrome_frame_npapi.h
index ba36b99a33b073f874e5ce94006360ce08a14764..73cbf754ccdccddfcad38e63827442e9a8fa6efb 100644
--- a/chrome_frame/chrome_frame_npapi.h
+++ b/chrome_frame/chrome_frame_npapi.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -47,7 +47,6 @@ class ChromeFrameNPAPI
PLUGIN_PROPERTY_ONPRIVATEMESSAGE,
PLUGIN_PROPERTY_USECHROMENETWORK,
PLUGIN_PROPERTY_ONCLOSE,
- PLUGIN_PROPERTY_SESSIONID,
PLUGIN_PROPERTY_COUNT // must be last
} PluginPropertyId;
@@ -147,11 +146,6 @@ END_MSG_MAP()
virtual void OnAutomationServerReady();
virtual void OnAutomationServerLaunchFailed(
AutomationLaunchResult reason, const std::string& server_version);
- virtual void OnExtensionInstalled(const FilePath& path,
- void* user_data, AutomationMsg_ExtensionResponseValues response);
- virtual void OnGetEnabledExtensionsComplete(
- void* user_data,
- const std::vector<FilePath>& extension_directories);
virtual void OnCloseTab();
private:
@@ -198,22 +192,6 @@ END_MSG_MAP()
bool postPrivateMessage(NPObject* npobject, const NPVariant* args,
uint32_t arg_count, NPVariant* result);
- // This method is only available when the control is in privileged mode.
- bool installExtension(NPObject* npobject, const NPVariant* args,
- uint32_t arg_count, NPVariant* result);
-
- // This method is only available when the control is in privileged mode.
- bool loadExtension(NPObject* npobject, const NPVariant* args,
- uint32_t arg_count, NPVariant* result);
-
- // This method is only available when the control is in privileged mode.
- bool enableExtensionAutomation(NPObject* npobject, const NPVariant* args,
- uint32_t arg_count, NPVariant* result);
-
- // This method is only available when the control is in privileged mode.
- bool getEnabledExtensions(NPObject* npobject, const NPVariant* args,
- uint32_t arg_count, NPVariant* result);
-
// Pointers to method implementations.
static PluginMethod plugin_methods_[];

Powered by Google App Engine
This is Rietveld 408576698