From 755d174bcd4a2e9f3fbc0a4fd6ab6096981d3377 Mon Sep 17 00:00:00 2001 From: "jochen@chromium.org" Date: Mon, 7 Nov 2011 23:33:30 +0000 Subject: Don't trigger the tab's throbber for webui pages BUG=103080 TEST=none Review URL: http://codereview.chromium.org/8467027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108937 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/webui/generic_handler.h | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'content/browser/webui/generic_handler.h') diff --git a/content/browser/webui/generic_handler.h b/content/browser/webui/generic_handler.h index 7aa6a67..1f57e4d 100644 --- a/content/browser/webui/generic_handler.h +++ b/content/browser/webui/generic_handler.h @@ -20,21 +20,10 @@ class GenericHandler : public WebUIMessageHandler { // WebUIMessageHandler implementation. virtual void RegisterMessages() OVERRIDE; - virtual bool IsLoading() const OVERRIDE; private: void HandleNavigateToUrl(const base::ListValue* args); - // Javascript hook to indicate whether or not a long running operation is in - // progress. - void HandleSetIsLoading(const base::ListValue* args); - - // Indicates whether or not this WebUI is performing a long running operation - // and that the throbber should reflect this. - void SetIsLoading(bool is_loading); - - bool is_loading_; - DISALLOW_COPY_AND_ASSIGN(GenericHandler); }; -- cgit v1.1