diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-10 00:13:58 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-10 00:13:58 +0000 |
commit | 7ade2739cb51ef8c3ab5b77c8b2951c8367ca043 (patch) | |
tree | b9c4f78f3d1789e0b89bda7a2f0fec8551ec3880 /chrome/browser/dom_ui/tips_handler.cc | |
parent | 35b2c88049d48a928885680bba43653d5ecab8cc (diff) | |
download | chromium_src-7ade2739cb51ef8c3ab5b77c8b2951c8367ca043.zip chromium_src-7ade2739cb51ef8c3ab5b77c8b2951c8367ca043.tar.gz chromium_src-7ade2739cb51ef8c3ab5b77c8b2951c8367ca043.tar.bz2 |
WebUI: Rename the class DOMUI to WebUI.
Add a typedef for WebUI to allow us renaming the class now, and then renaming the other entries in small chunks.
Also rename the file from dom_ui.[cc,h] to web_ui.[cc,h].
BUG=59945
TEST=trybots
Review URL: http://codereview.chromium.org/6458016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74386 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/dom_ui/tips_handler.cc')
-rw-r--r-- | chrome/browser/dom_ui/tips_handler.cc | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/chrome/browser/dom_ui/tips_handler.cc b/chrome/browser/dom_ui/tips_handler.cc index 2026d51..7f7b565 100644 --- a/chrome/browser/dom_ui/tips_handler.cc +++ b/chrome/browser/dom_ui/tips_handler.cc @@ -1,14 +1,15 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "chrome/browser/dom_ui/tips_handler.h" + #include <string> #include "base/callback.h" #include "base/utf_string_conversions.h" #include "base/values.h" #include "chrome/browser/browser_process.h" -#include "chrome/browser/dom_ui/tips_handler.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/web_resource/web_resource_service.h" #include "chrome/common/pref_names.h" @@ -18,15 +19,15 @@ #include "grit/generated_resources.h" #include "ui/base/l10n/l10n_util.h" -WebUIMessageHandler* TipsHandler::Attach(DOMUI* dom_ui) { - dom_ui_ = dom_ui; - tips_cache_ = dom_ui_->GetProfile()->GetPrefs()-> +WebUIMessageHandler* TipsHandler::Attach(WebUI* web_ui) { + web_ui_ = web_ui; + tips_cache_ = web_ui_->GetProfile()->GetPrefs()-> GetMutableDictionary(prefs::kNTPWebResourceCache); - return WebUIMessageHandler::Attach(dom_ui); + return WebUIMessageHandler::Attach(web_ui); } void TipsHandler::RegisterMessages() { - dom_ui_->RegisterMessageCallback("getTips", + web_ui_->RegisterMessageCallback("getTips", NewCallback(this, &TipsHandler::HandleGetTips)); } @@ -44,13 +45,13 @@ void TipsHandler::HandleGetTips(const ListValue* args) { // If tips are not correct for our language, do not send. Wait for update. // We need to check here because the new tab page calls for tips before // the tip service starts up. - PrefService* current_prefs = dom_ui_->GetProfile()->GetPrefs(); + PrefService* current_prefs = web_ui_->GetProfile()->GetPrefs(); if (current_prefs->HasPrefPath(prefs::kNTPTipsResourceServer)) { std::string server = current_prefs->GetString( prefs::kNTPTipsResourceServer); std::string locale = g_browser_process->GetApplicationLocale(); if (!EndsWith(server, locale, false)) { - dom_ui_->CallJavascriptFunction(L"tips", list_value); + web_ui_->CallJavascriptFunction(L"tips", list_value); return; } } @@ -66,7 +67,7 @@ void TipsHandler::HandleGetTips(const ListValue* args) { // to set home page before resetting tip index to 0. current_tip_index = 0; const PrefService::Preference* pref = - dom_ui_->GetProfile()->GetPrefs()->FindPreference( + web_ui_->GetProfile()->GetPrefs()->FindPreference( prefs::kHomePageIsNewTabPage); bool value; if (pref && !pref->IsManaged() && @@ -93,7 +94,7 @@ void TipsHandler::SendTip(const std::string& tip, const std::string& tip_type, tips_cache_->SetInteger(WebResourceService::kCurrentTipPrefName, tip_index); // Send list of web resource items back out to the DOM. - dom_ui_->CallJavascriptFunction(L"tips", list_value); + web_ui_->CallJavascriptFunction(L"tips", list_value); } // static |