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

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

Issue 293503003: Eliminate dependence of GoogleURLTracker et al. on InfoBarService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Response to review 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_INFOBAR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_INFOBAR_DELEGATE_H_ 6 #define CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_INFOBAR_DELEGATE_H_
7 7
8 #include "components/infobars/core/confirm_infobar_delegate.h" 8 #include "components/infobars/core/confirm_infobar_delegate.h"
9 #include "url/gurl.h" 9 #include "url/gurl.h"
10 10
11 class GoogleURLTracker; 11 class GoogleURLTracker;
12 class InfoBarService; 12 class GoogleURLTrackerNavigationHelper;
13
14 namespace infobars {
15 class InfoBarManager;
16 }
13 17
14 // This infobar is shown by the GoogleURLTracker when the Google base URL has 18 // This infobar is shown by the GoogleURLTracker when the Google base URL has
15 // changed. 19 // changed.
16 class GoogleURLTrackerInfoBarDelegate : public ConfirmInfoBarDelegate { 20 class GoogleURLTrackerInfoBarDelegate : public ConfirmInfoBarDelegate {
17 public: 21 public:
18 // Creates a Google URL tracker infobar and delegate and adds the infobar to 22 // Creates a Google URL tracker infobar and delegate and adds the infobar to
19 // |infobar_service|. Returns the infobar if it was successfully added. 23 // |infobar_manager|. Returns the infobar if it was successfully added.
20 static infobars::InfoBar* Create(InfoBarService* infobar_service, 24 static infobars::InfoBar* Create(
21 GoogleURLTracker* google_url_tracker, 25 infobars::InfoBarManager* infobar_manager,
22 const GURL& search_url); 26 GoogleURLTracker* google_url_tracker,
27 const GURL& search_url);
23 28
24 // ConfirmInfoBarDelegate: 29 // ConfirmInfoBarDelegate:
25 virtual bool Accept() OVERRIDE; 30 virtual bool Accept() OVERRIDE;
26 virtual bool Cancel() OVERRIDE; 31 virtual bool Cancel() OVERRIDE;
27 32
33 GoogleURLTrackerNavigationHelper* navigation_helper() {
34 return navigation_helper_weak_ptr_;
35 }
36
37 void set_navigation_helper(
38 scoped_ptr<GoogleURLTrackerNavigationHelper> navigation_helper) {
39 navigation_helper_ = navigation_helper.Pass();
40 navigation_helper_weak_ptr_ = navigation_helper_.get();
41 }
42
28 // Other than set_pending_id(), these accessors are only used by test code. 43 // Other than set_pending_id(), these accessors are only used by test code.
29 const GURL& search_url() const { return search_url_; } 44 const GURL& search_url() const { return search_url_; }
30 void set_search_url(const GURL& search_url) { search_url_ = search_url; } 45 void set_search_url(const GURL& search_url) { search_url_ = search_url; }
31 int pending_id() const { return pending_id_; } 46 int pending_id() const { return pending_id_; }
32 void set_pending_id(int pending_id) { pending_id_ = pending_id; } 47 void set_pending_id(int pending_id) { pending_id_ = pending_id; }
33 48
34 // These are virtual so test code can override them in a subclass. 49 // These are virtual so test code can override them in a subclass.
35 virtual void Update(const GURL& search_url); 50 virtual void Update(const GURL& search_url);
36 virtual void Close(bool redo_search); 51 virtual void Close(bool redo_search);
37 52
38 protected: 53 protected:
39 GoogleURLTrackerInfoBarDelegate(GoogleURLTracker* google_url_tracker, 54 GoogleURLTrackerInfoBarDelegate(
40 const GURL& search_url); 55 GoogleURLTracker* google_url_tracker,
56 const GURL& search_url);
41 virtual ~GoogleURLTrackerInfoBarDelegate(); 57 virtual ~GoogleURLTrackerInfoBarDelegate();
42 58
43 private: 59 private:
44 // ConfirmInfoBarDelegate: 60 // ConfirmInfoBarDelegate:
45 virtual base::string16 GetMessageText() const OVERRIDE; 61 virtual base::string16 GetMessageText() const OVERRIDE;
46 virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE; 62 virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
47 virtual base::string16 GetLinkText() const OVERRIDE; 63 virtual base::string16 GetLinkText() const OVERRIDE;
48 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; 64 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE;
49 virtual bool ShouldExpireInternal( 65 virtual bool ShouldExpireInternal(
50 const NavigationDetails& details) const OVERRIDE; 66 const NavigationDetails& details) const OVERRIDE;
51 67
52 GoogleURLTracker* google_url_tracker_; 68 GoogleURLTracker* google_url_tracker_;
69 scoped_ptr<GoogleURLTrackerNavigationHelper> navigation_helper_;
70
71 // During Close(), this object gives up ownership of |navigation_helper_|,
72 // which then outlives this object. Sometimes after this point, other classes
73 // still attempt to call navigation_helper() to access the (still-valid)
74 // instance. The NavigationHelper instance is stored as a weak pointer in
75 // addition to a strong pointer to facilitate this case.
76 GoogleURLTrackerNavigationHelper* navigation_helper_weak_ptr_;
53 GURL search_url_; 77 GURL search_url_;
54 int pending_id_; 78 int pending_id_;
55 79
56 DISALLOW_COPY_AND_ASSIGN(GoogleURLTrackerInfoBarDelegate); 80 DISALLOW_COPY_AND_ASSIGN(GoogleURLTrackerInfoBarDelegate);
57 }; 81 };
58 82
59 #endif // CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_INFOBAR_DELEGATE_H_ 83 #endif // CHROME_BROWSER_GOOGLE_GOOGLE_URL_TRACKER_INFOBAR_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/google/google_url_tracker.cc ('k') | chrome/browser/google/google_url_tracker_infobar_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698