summaryrefslogtreecommitdiffstats
path: root/chrome/browser/google/google_url_tracker.h
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-30 22:22:49 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-30 22:22:49 +0000
commitf7578f5d14dbd1c2931b7f574ead27cc978ab73a (patch)
treeddb316a54abc01a6219e4d129062390af5759be9 /chrome/browser/google/google_url_tracker.h
parent439764b703a5edd48aa878b86fbd07a117b6a3cc (diff)
downloadchromium_src-f7578f5d14dbd1c2931b7f574ead27cc978ab73a.zip
chromium_src-f7578f5d14dbd1c2931b7f574ead27cc978ab73a.tar.gz
chromium_src-f7578f5d14dbd1c2931b7f574ead27cc978ab73a.tar.bz2
Move Google-specific code under browser/ into browser/google/.
BUG=50548 TEST=compiles Review URL: http://codereview.chromium.org/3280008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57922 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/google/google_url_tracker.h')
-rw-r--r--chrome/browser/google/google_url_tracker.h162
1 files changed, 162 insertions, 0 deletions
diff --git a/chrome/browser/google/google_url_tracker.h b/chrome/browser/google/google_url_tracker.h
new file mode 100644
index 0000000..4b9ba57
--- /dev/null
+++ b/chrome/browser/google/google_url_tracker.h
@@ -0,0 +1,162 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_H_
+#define CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_H_
+#pragma once
+
+#include <string>
+
+#include "base/gtest_prod_util.h"
+#include "base/scoped_ptr.h"
+#include "chrome/common/net/url_fetcher.h"
+#include "chrome/common/notification_observer.h"
+#include "chrome/common/notification_registrar.h"
+#include "googleurl/src/gurl.h"
+#include "net/base/network_change_notifier.h"
+
+class InfoBarDelegate;
+class NavigationController;
+class PrefService;
+class TabContents;
+class TemplateURL;
+
+// This object is responsible for checking the Google URL once per network
+// change, and if necessary prompting the user to see if they want to change to
+// using it. The current and last prompted values are saved to prefs.
+//
+// Most consumers should only call GoogleURL(), which is guaranteed to
+// synchronously return a value at all times (even during startup or in unittest
+// mode). Consumers who need to be notified when things change should listen to
+// the notification service for NOTIFY_GOOGLE_URL_UPDATED, and call GoogleURL()
+// again after receiving it, in order to get the updated value.
+//
+// To protect users' privacy and reduce server load, no updates will be
+// performed (ever) unless at least one consumer registers interest by calling
+// RequestServerCheck().
+class GoogleURLTracker : public URLFetcher::Delegate,
+ public NotificationObserver,
+ public net::NetworkChangeNotifier::Observer {
+ public:
+ class InfoBarDelegateFactory {
+ public:
+ virtual ~InfoBarDelegateFactory() {}
+ virtual InfoBarDelegate* CreateInfoBar(TabContents* tab_contents,
+ GoogleURLTracker* google_url_tracker,
+ const GURL& new_google_url);
+ };
+
+ // Only the main browser process loop should call this, when setting up
+ // g_browser_process->google_url_tracker_. No code other than the
+ // GoogleURLTracker itself should actually use
+ // g_browser_process->google_url_tracker() (which shouldn't be hard, since
+ // there aren't useful public functions on this object for consumers to access
+ // anyway).
+ GoogleURLTracker();
+
+ virtual ~GoogleURLTracker();
+
+ // Returns the current Google URL. This will return a valid URL even in
+ // unittest mode.
+ //
+ // This is the only function most code should ever call.
+ static GURL GoogleURL();
+
+ // Requests that the tracker perform a server check to update the Google URL
+ // as necessary. This will happen at most once per network change, not
+ // sooner than five seconds after startup (checks requested before that time
+ // will occur then; checks requested afterwards will occur immediately, if
+ // no other checks have been made during this run).
+ //
+ // In unittest mode, this function does nothing.
+ static void RequestServerCheck();
+
+ static void RegisterPrefs(PrefService* prefs);
+
+ // Notifies the tracker that the user has started a Google search.
+ // If prompting is necessary, we then listen for the subsequent
+ // NAV_ENTRY_PENDING notification to get the appropriate NavigationController.
+ // When the load commits, we'll show the infobar.
+ static void GoogleURLSearchCommitted();
+
+ static const char kDefaultGoogleHomepage[];
+ static const char kSearchDomainCheckURL[];
+
+ // Methods called from InfoBar delegate.
+ void AcceptGoogleURL(const GURL& google_url);
+ void InfoBarClosed();
+ void RedoSearch();
+
+ NavigationController* controller() const { return controller_; }
+
+ private:
+ friend class GoogleURLTrackerTest;
+
+ // Registers consumer interest in getting an updated URL from the server.
+ // It will be notified as NotificationType::GOOGLE_URL_UPDATED, so the
+ // consumer should observe this notification before calling this.
+ void SetNeedToFetch();
+
+ // Called when the five second startup sleep has finished. Runs any pending
+ // fetch.
+ void FinishSleep();
+
+ // Starts the fetch of the up-to-date Google URL if we actually want to fetch
+ // it and can currently do so.
+ void StartFetchIfDesirable();
+
+ // URLFetcher::Delegate
+ virtual void OnURLFetchComplete(const URLFetcher *source,
+ const GURL& url,
+ const URLRequestStatus& status,
+ int response_code,
+ const ResponseCookies& cookies,
+ const std::string& data);
+
+ // NotificationObserver
+ virtual void Observe(NotificationType type,
+ const NotificationSource& source,
+ const NotificationDetails& details);
+
+ // NetworkChangeNotifier::Observer
+ virtual void OnIPAddressChanged();
+
+ void SearchCommitted();
+
+ void ShowGoogleURLInfoBarIfNecessary(TabContents* tab_contents);
+
+ NotificationRegistrar registrar_;
+ // TODO(ukai): GoogleURLTracker should track google domain (e.g. google.co.uk)
+ // rather than URL (e.g. http://www.google.co.uk/), so that user could
+ // configure to use https in search engine templates.
+ GURL google_url_;
+ GURL fetched_google_url_;
+ ScopedRunnableMethodFactory<GoogleURLTracker> runnable_method_factory_;
+ scoped_ptr<URLFetcher> fetcher_;
+ int fetcher_id_;
+ bool in_startup_sleep_; // True if we're in the five-second "no fetching"
+ // period that begins at browser start.
+ bool already_fetched_; // True if we've already fetched a URL once this run;
+ // we won't fetch again until after a restart.
+ bool need_to_fetch_; // True if a consumer actually wants us to fetch an
+ // updated URL. If this is never set, we won't
+ // bother to fetch anything.
+ // Consumers should observe
+ // NotificationType::GOOGLE_URL_UPDATED.
+ bool request_context_available_;
+ // True when the profile has been loaded and the
+ // default request context created, so we can
+ // actually do the fetch with the right data.
+ bool need_to_prompt_; // True if the last fetched Google URL is not
+ // matched with current user's default Google URL
+ // nor the last prompted Google URL.
+ NavigationController* controller_;
+ scoped_ptr<InfoBarDelegateFactory> infobar_factory_;
+ InfoBarDelegate* infobar_;
+ GURL search_url_;
+
+ DISALLOW_COPY_AND_ASSIGN(GoogleURLTracker);
+};
+
+#endif // CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_H_