summaryrefslogtreecommitdiffstats
path: root/chrome/browser/automation/automation_tab_helper.h
diff options
context:
space:
mode:
authoreroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-27 23:29:02 +0000
committereroman@chromium.org <eroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-27 23:29:02 +0000
commit1adb77a96a6dfc0d40263180189cf78d535c8696 (patch)
tree661624d7628bce30fb3557f279deefdebca0d9bb /chrome/browser/automation/automation_tab_helper.h
parent2b624c561eecf28498a99158f08cc03f6d39d18b (diff)
downloadchromium_src-1adb77a96a6dfc0d40263180189cf78d535c8696.zip
chromium_src-1adb77a96a6dfc0d40263180189cf78d535c8696.tar.gz
chromium_src-1adb77a96a6dfc0d40263180189cf78d535c8696.tar.bz2
Revert 107645 (To see if it was responsible for increase in static initializers) - Fix test snapshotting on linux by creating a separate automation path for
snapshots outside of the thumbnail generator. BUG=69370,66371,63022 TEST=none Review URL: http://codereview.chromium.org/8294030 TBR=kkania@chromium.org Review URL: http://codereview.chromium.org/8416022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107647 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/automation/automation_tab_helper.h')
-rw-r--r--chrome/browser/automation/automation_tab_helper.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/chrome/browser/automation/automation_tab_helper.h b/chrome/browser/automation/automation_tab_helper.h
index a8ddef7..d3016d8 100644
--- a/chrome/browser/automation/automation_tab_helper.h
+++ b/chrome/browser/automation/automation_tab_helper.h
@@ -48,12 +48,6 @@ class TabEventObserver {
// This method will always be called if |OnFirstPendingLoad| was called.
virtual void OnNoMorePendingLoads(TabContents* tab_contents) { }
- // Called as a result of a tab being snapshotted.
- virtual void OnSnapshotEntirePageACK(
- bool success,
- const std::vector<unsigned char>& png_data,
- const std::string& error_msg) { }
-
protected:
TabEventObserver();
virtual ~TabEventObserver();
@@ -90,9 +84,6 @@ class AutomationTabHelper
void AddObserver(TabEventObserver* observer);
void RemoveObserver(TabEventObserver* observer);
- // Snapshots the entire page without resizing.
- void SnapshotEntirePage();
-
// Returns true if the tab is loading or the tab is scheduled to load
// immediately. Note that scheduled loads may be canceled.
bool has_pending_loads() const;
@@ -100,11 +91,6 @@ class AutomationTabHelper
private:
friend class AutomationTabHelperTest;
- void OnSnapshotEntirePageACK(
- bool success,
- const std::vector<unsigned char>& png_data,
- const std::string& error_msg);
-
// TabContentsObserver implementation.
virtual void DidStartLoading();
virtual void DidStopLoading();