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

Side by Side Diff: chrome/browser/ui/alternate_error_tab_observer.cc

Issue 8892011: Clean up TCW, make it solely a hub for 1:1 observer/helper objects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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) 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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/task_manager/task_manager_resource_providers.cc ('k') | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698