diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 15:52:56 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 15:52:56 +0000 |
commit | df10ae988a12c07e6856d1e9dec9ee31af0e62d0 (patch) | |
tree | de798e597e2f447f9265318eb7de58c4842f560c /chrome/browser/automation/automation_provider.h | |
parent | deb2656d7365828ebe63290478014a485cb0adc1 (diff) | |
download | chromium_src-df10ae988a12c07e6856d1e9dec9ee31af0e62d0.zip chromium_src-df10ae988a12c07e6856d1e9dec9ee31af0e62d0.tar.gz chromium_src-df10ae988a12c07e6856d1e9dec9ee31af0e62d0.tar.bz2 |
Convert the infobars ui_test to a browser_test. Remove the ExtensionProxy class which is now unused, its associated test, and the all the dependent code.
BUG=121574
Review URL: https://chromiumcodereview.appspot.com/10115018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132796 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/automation_provider.h')
-rw-r--r-- | chrome/browser/automation/automation_provider.h | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h index a094c6c..f5cace1 100644 --- a/chrome/browser/automation/automation_provider.h +++ b/chrome/browser/automation/automation_provider.h @@ -39,13 +39,10 @@ #endif // defined(OS_WIN) && !defined(USE_AURA) class AutomationBrowserTracker; -class AutomationExtensionTracker; class AutomationResourceMessageFilter; class AutomationTabTracker; class AutomationWindowTracker; class Browser; -class Extension; -class ExtensionTestResultNotificationObserver; class ExternalTabContainer; class FilePath; class InitialLoadObserver; @@ -146,11 +143,6 @@ class AutomationProvider return reply_message; } - // Adds the extension passed in to the extension tracker, and returns - // the associated handle. If the tracker already contains the extension, - // the handle is simply returned. - int AddExtension(const Extension* extension); - #if defined(OS_WIN) && !defined(USE_AURA) // Adds the external tab passed in to the tab tracker. bool AddExternalTab(ExternalTabContainer* external_tab); @@ -271,36 +263,6 @@ class AutomationProvider void EndTracing(IPC::Message* reply_message); void GetTracingOutput(std::string* chunk, bool* success); - void WaitForExtensionTestResult(IPC::Message* reply_message); - - void InstallExtension(const FilePath& extension_path, - bool with_ui, - IPC::Message* reply_message); - - void UninstallExtension(int extension_handle, - bool* success); - - void ReloadExtension(int extension_handle, - IPC::Message* reply_message); - - void EnableExtension(int extension_handle, - IPC::Message* reply_message); - - void DisableExtension(int extension_handle, - bool* success); - - void ExecuteExtensionActionInActiveTabAsync(int extension_handle, - int browser_handle, - IPC::Message* reply_message); - - void MoveExtensionBrowserAction(int extension_handle, int index, - bool* success); - - void GetExtensionProperty(int extension_handle, - AutomationMsg_ExtensionProperty type, - bool* success, - std::string* value); - // Asynchronous request for printing the current tab. void PrintAsync(int tab_handle); @@ -322,18 +284,6 @@ class AutomationProvider void StopAsync(int tab_handle); void SaveAsAsync(int tab_handle); - // Returns the extension for the given handle. Returns NULL if there is - // no extension for the handle. - const Extension* GetExtension(int extension_handle); - - // Returns the extension for the given handle, if the handle is valid and - // the associated extension is enabled. Returns NULL otherwise. - const Extension* GetEnabledExtension(int extension_handle); - - // Returns the extension for the given handle, if the handle is valid and - // the associated extension is disabled. Returns NULL otherwise. - const Extension* GetDisabledExtension(int extension_handle); - // Method called by the popup menu tracker when a popup menu is opened. void NotifyPopupMenuOpened(); @@ -392,9 +342,6 @@ class AutomationProvider scoped_ptr<IPC::ChannelProxy> channel_; scoped_ptr<content::NotificationObserver> new_tab_ui_load_observer_; scoped_ptr<content::NotificationObserver> find_in_page_observer_; - scoped_ptr<ExtensionTestResultNotificationObserver> - extension_test_result_observer_; - scoped_ptr<AutomationExtensionTracker> extension_tracker_; // True iff we should enable observers that check for initial load conditions. bool use_initial_load_observers_; |