OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/browser/ui/alternate_error_tab_observer.h" | 5 #include "chrome/browser/ui/alternate_error_tab_observer.h" |
6 | 6 |
7 #include "chrome/browser/google/google_util.h" | 7 #include "chrome/browser/google/google_util.h" |
8 #include "chrome/browser/prefs/pref_service.h" | 8 #include "chrome/browser/prefs/pref_service.h" |
9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
10 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 10 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
11 #include "chrome/common/chrome_notification_types.h" | 11 #include "chrome/common/chrome_notification_types.h" |
12 #include "chrome/common/pref_names.h" | 12 #include "chrome/common/pref_names.h" |
13 #include "content/browser/renderer_host/render_view_host.h" | 13 #include "content/browser/renderer_host/render_view_host.h" |
| 14 #include "content/browser/tab_contents/tab_contents.h" |
14 #include "content/public/browser/notification_service.h" | 15 #include "content/public/browser/notification_service.h" |
15 | 16 |
16 AlternateErrorPageTabObserver::AlternateErrorPageTabObserver( | 17 AlternateErrorPageTabObserver::AlternateErrorPageTabObserver( |
17 TabContentsWrapper* wrapper) | 18 TabContentsWrapper* wrapper) |
18 : TabContentsObserver(wrapper->tab_contents()), | 19 : TabContentsObserver(wrapper->tab_contents()), |
19 wrapper_(wrapper) { | 20 wrapper_(wrapper) { |
20 PrefService* prefs = wrapper_->profile()->GetPrefs(); | 21 PrefService* prefs = wrapper_->profile()->GetPrefs(); |
21 if (prefs) { | 22 if (prefs) { |
22 pref_change_registrar_.Init(prefs); | 23 pref_change_registrar_.Init(prefs); |
23 pref_change_registrar_.Add(prefs::kAlternateErrorPagesEnabled, this); | 24 pref_change_registrar_.Add(prefs::kAlternateErrorPagesEnabled, this); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 GURL(google_util::kLinkDoctorBaseURL)); | 87 GURL(google_util::kLinkDoctorBaseURL)); |
87 url = google_util::AppendGoogleTLDParam(url); | 88 url = google_util::AppendGoogleTLDParam(url); |
88 } | 89 } |
89 return url; | 90 return url; |
90 } | 91 } |
91 | 92 |
92 void AlternateErrorPageTabObserver::UpdateAlternateErrorPageURL( | 93 void AlternateErrorPageTabObserver::UpdateAlternateErrorPageURL( |
93 RenderViewHost* rvh) { | 94 RenderViewHost* rvh) { |
94 rvh->SetAltErrorPageURL(GetAlternateErrorPageURL()); | 95 rvh->SetAltErrorPageURL(GetAlternateErrorPageURL()); |
95 } | 96 } |
OLD | NEW |