diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 19:40:03 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-09 19:40:03 +0000 |
commit | cfc7a4bbe4053a40d8a253403c1bae4fc845c373 (patch) | |
tree | bb15770f4d9511ed540d0ef0adfd46e0ccd42557 /chrome/browser/automation/automation_provider.h | |
parent | 81cacede51c21fef6dddc4bccba0d6baba9c5822 (diff) | |
download | chromium_src-cfc7a4bbe4053a40d8a253403c1bae4fc845c373.zip chromium_src-cfc7a4bbe4053a40d8a253403c1bae4fc845c373.tar.gz chromium_src-cfc7a4bbe4053a40d8a253403c1bae4fc845c373.tar.bz2 |
GTTF: Move some more bits of automation code from AutomationProvider to TestingAutomationProvider
BUG=52097
TEST=ui_tests, chrome_frame_tests
Review URL: http://codereview.chromium.org/3354013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58975 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/automation_provider.h')
-rw-r--r-- | chrome/browser/automation/automation_provider.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h index 508e067..2ad6dea 100644 --- a/chrome/browser/automation/automation_provider.h +++ b/chrome/browser/automation/automation_provider.h @@ -195,7 +195,6 @@ class AutomationProvider : public base::RefCounted<AutomationProvider>, void OnUnhandledMessage(); // IPC Message callbacks. - void ShutdownSessionService(int handle, bool* result); void WindowSimulateDrag(int handle, std::vector<gfx::Point> drag_path, int flags, @@ -210,11 +209,6 @@ class AutomationProvider : public base::RefCounted<AutomationProvider>, void SetFilteredInet(const IPC::Message& message, bool enabled); void GetFilteredInetHitCount(int* hit_count); void SetProxyConfig(const std::string& new_proxy_config); - void SetContentSetting(int handle, - const std::string& host, - ContentSettingsType content_type, - ContentSetting setting, - bool* success); // Responds to the FindInPage request, retrieves the search query parameters, // launches an observer to listen for results and issues a StartFind request. @@ -268,12 +262,6 @@ class AutomationProvider : public base::RefCounted<AutomationProvider>, // Asynchronous request for printing the current tab. void PrintAsync(int tab_handle); - // Resets to the default theme. - void ResetToDefaultTheme(); - - // Gets the current used encoding name of the page in the specified tab. - void GetPageCurrentEncoding(int tab_handle, std::string* current_encoding); - // Uses the specified encoding to override the encoding of the page in the // specified tab. void OverrideEncoding(int tab_handle, |