Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(616)

Side by Side Diff: chrome/browser/google/google_url_tracker_navigation_helper_impl.h

Issue 316203003: Componentize GoogleURLTracker(InfoBarDelegate,MapEntry,NavHelper) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_NAVIGATION_HELPER_IMPL_H_ 5 #ifndef CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_NAVIGATION_HELPER_IMPL_H_
6 #define CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_NAVIGATION_HELPER_IMPL_H_ 6 #define CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_NAVIGATION_HELPER_IMPL_H_
7 7
8 #include "chrome/browser/google/google_url_tracker_navigation_helper.h" 8 #include "components/google/core/browser/google_url_tracker_navigation_helper.h"
9 #include "content/public/browser/notification_observer.h" 9 #include "content/public/browser/notification_observer.h"
10 #include "content/public/browser/notification_registrar.h" 10 #include "content/public/browser/notification_registrar.h"
11 #include "url/gurl.h" 11 #include "url/gurl.h"
12 12
13 namespace content { 13 namespace content {
14 class WebContents; 14 class WebContents;
15 } 15 }
16 16
17 class GoogleURLTrackerNavigationHelperImpl 17 class GoogleURLTrackerNavigationHelperImpl
18 : public GoogleURLTrackerNavigationHelper, 18 : public GoogleURLTrackerNavigationHelper,
(...skipping 20 matching lines...) Expand all
39 const content::NotificationSource& source, 39 const content::NotificationSource& source,
40 const content::NotificationDetails& details) OVERRIDE; 40 const content::NotificationDetails& details) OVERRIDE;
41 41
42 content::WebContents* web_contents_; 42 content::WebContents* web_contents_;
43 content::NotificationRegistrar registrar_; 43 content::NotificationRegistrar registrar_;
44 44
45 DISALLOW_COPY_AND_ASSIGN(GoogleURLTrackerNavigationHelperImpl); 45 DISALLOW_COPY_AND_ASSIGN(GoogleURLTrackerNavigationHelperImpl);
46 }; 46 };
47 47
48 #endif // CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_NAVIGATION_HELPER_IMPL_H_ 48 #endif // CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_NAVIGATION_HELPER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698