OLD | NEW |
---|---|
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 // In certain corner cases, this object gives up ownership of | |
Peter Kasting
2014/05/28 22:19:04
Nit: "In certain corner cases" -> "During Close()"
blundell
2014/05/30 09:39:18
Done.
| |
72 // |navigation_helper_|, which then outlives this object. In these cases, | |
73 // other classes still require that |navigation_helper()| return a pointer to | |
Peter Kasting
2014/05/28 22:19:04
Nit: No || around function name
Maybe "Sometimes
blundell
2014/05/30 09:39:18
Done.
| |
74 // the (still-valid) instance. The NavigationHelper instance is stored as a | |
75 // weak pointer in 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_ |
OLD | NEW |