summaryrefslogtreecommitdiffstats
path: root/webkit/glue/chrome_client_impl.h
diff options
context:
space:
mode:
authormbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-04 18:11:20 +0000
committermbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-04 18:11:20 +0000
commitcd9832fe7ee4e4dc28f0b301b4eb614dcbba25e4 (patch)
tree85c652ad14572b480be9fdbf7b0e51877167a4cc /webkit/glue/chrome_client_impl.h
parent2b57f5460c86978c881bccd79d9272388a98312f (diff)
downloadchromium_src-cd9832fe7ee4e4dc28f0b301b4eb614dcbba25e4.zip
chromium_src-cd9832fe7ee4e4dc28f0b301b4eb614dcbba25e4.tar.gz
chromium_src-cd9832fe7ee4e4dc28f0b301b4eb614dcbba25e4.tar.bz2
Revert bug fix because interactive_ui_tests are failing.
Review URL: http://codereview.chromium.org/99358 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15227 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/chrome_client_impl.h')
-rw-r--r--webkit/glue/chrome_client_impl.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/webkit/glue/chrome_client_impl.h b/webkit/glue/chrome_client_impl.h
index 194dd62..e372f7c 100644
--- a/webkit/glue/chrome_client_impl.h
+++ b/webkit/glue/chrome_client_impl.h
@@ -6,7 +6,6 @@
#define WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_
#include "base/compiler_specific.h"
-#include "base/task.h"
MSVC_PUSH_WARNING_LEVEL(0);
#include "ChromeClientChromium.h"
@@ -136,9 +135,6 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium {
virtual WebCore::HTMLParserQuirks* createHTMLParserQuirks() { return 0; }
private:
- void ClearPendingWindowRect();
- void SetPendingWindowRect(const WebCore::FloatRect& r);
-
WebViewImpl* webview_; // weak pointer
bool toolbars_visible_;
bool statusbar_visible_;
@@ -147,12 +143,6 @@ class ChromeClientImpl : public WebCore::ChromeClientChromium {
bool resizable_;
// Set to true if the next SetCursor is to be ignored.
bool ignore_next_set_cursor_;
- // While we are waiting for the browser to update window sizes,
- // we track the pending size temporarily.
- bool has_pending_window_rect_;
- WebCore::FloatRect pending_window_rect_;
-
- ScopedRunnableMethodFactory<ChromeClientImpl> task_factory_;
};
#endif // WEBKIT_GLUE_CHROME_CLIENT_IMPL_H_