blob: a86d2d3702fc0aebe66c1626f42d6bce9fb701d9 [file] [log] [blame]
// Copyright (c) 2012 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_NAVIGATION_HELPER_IMPL_H_
#define CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_NAVIGATION_HELPER_IMPL_H_
#include "chrome/browser/google/google_url_tracker_navigation_helper.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "url/gurl.h"
namespace content {
class WebContents;
}
class GoogleURLTrackerNavigationHelperImpl
: public GoogleURLTrackerNavigationHelper,
public content::NotificationObserver {
public:
GoogleURLTrackerNavigationHelperImpl(content::WebContents* web_contents,
GoogleURLTracker* tracker);
virtual ~GoogleURLTrackerNavigationHelperImpl();
// GoogleURLTrackerNavigationHelper:
virtual void SetListeningForNavigationCommit(
bool listen) OVERRIDE;
virtual bool IsListeningForNavigationCommit() OVERRIDE;
virtual void SetListeningForTabDestruction(
bool listen) OVERRIDE;
virtual bool IsListeningForTabDestruction() OVERRIDE;
virtual void OpenURL(GURL url,
WindowOpenDisposition disposition,
bool user_clicked_on_link) OVERRIDE;
private:
// content::NotificationObserver:
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
content::WebContents* web_contents_;
content::NotificationRegistrar registrar_;
DISALLOW_COPY_AND_ASSIGN(GoogleURLTrackerNavigationHelperImpl);
};
#endif // CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_NAVIGATION_HELPER_IMPL_H_