diff options
author | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-18 15:20:40 +0000 |
---|---|---|
committer | willchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-18 15:20:40 +0000 |
commit | e2f2728bda54919c6cfbf457bfcb136bbd14cfb5 (patch) | |
tree | a07907063fac57adadb9fc4ebe0804611c772d85 /chrome/browser/chromeos | |
parent | f2e207f2c3aeb07187a87bcb2ed979b7551081e2 (diff) | |
download | chromium_src-e2f2728bda54919c6cfbf457bfcb136bbd14cfb5.zip chromium_src-e2f2728bda54919c6cfbf457bfcb136bbd14cfb5.tar.gz chromium_src-e2f2728bda54919c6cfbf457bfcb136bbd14cfb5.tar.bz2 |
Renaming parameter names from is_off_the_record to is_incognito
BUG=3333
TEST=NONE
Review URL: http://codereview.chromium.org/6703005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78693 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chromeos')
11 files changed, 18 insertions, 18 deletions
diff --git a/chrome/browser/chromeos/webui/imageburner_ui.cc b/chrome/browser/chromeos/webui/imageburner_ui.cc index 866a16f..03e4fec 100644 --- a/chrome/browser/chromeos/webui/imageburner_ui.cc +++ b/chrome/browser/chromeos/webui/imageburner_ui.cc @@ -54,8 +54,8 @@ class ImageBurnUIHTMLSource : public ChromeURLDataManager::DataSource { // Called when the network layer has requested a resource underneath // the path we registered. virtual void StartDataRequest(const std::string& path, - bool is_off_the_record, - int request_id) { + bool is_incognito, + int request_id) { DictionaryValue localized_strings; localized_strings.SetString("burnConfirmText1", l10n_util::GetStringUTF16(IDS_IMAGEBURN_CONFIM_BURN1)); diff --git a/chrome/browser/chromeos/webui/keyboard_overlay_ui.cc b/chrome/browser/chromeos/webui/keyboard_overlay_ui.cc index 50dc203..ab003e6 100644 --- a/chrome/browser/chromeos/webui/keyboard_overlay_ui.cc +++ b/chrome/browser/chromeos/webui/keyboard_overlay_ui.cc @@ -30,7 +30,7 @@ class KeyboardOverlayUIHTMLSource : public ChromeURLDataManager::DataSource { // Called when the keyboard overlay has requested a resource underneath // the path we registered. virtual void StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id); virtual std::string GetMimeType(const std::string&) const { return "text/html"; @@ -75,8 +75,8 @@ KeyboardOverlayUIHTMLSource::KeyboardOverlayUIHTMLSource() } void KeyboardOverlayUIHTMLSource::StartDataRequest(const std::string& path, - bool is_off_the_record, - int request_id) { + bool is_incognito, + int request_id) { DictionaryValue localized_strings; localized_strings.SetString("keyboardOverlayTitle", l10n_util::GetStringUTF16(IDS_KEYBOARD_OVERLAY_TITLE)); diff --git a/chrome/browser/chromeos/webui/login/login_container_ui.cc b/chrome/browser/chromeos/webui/login/login_container_ui.cc index 83d2a00..64d91a9 100644 --- a/chrome/browser/chromeos/webui/login/login_container_ui.cc +++ b/chrome/browser/chromeos/webui/login/login_container_ui.cc @@ -31,7 +31,7 @@ LoginContainerUIHTMLSource::LoginContainerUIHTMLSource( } void LoginContainerUIHTMLSource::StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id) { DictionaryValue localized_strings; SetFontAndTextDirection(&localized_strings); diff --git a/chrome/browser/chromeos/webui/login/login_container_ui.h b/chrome/browser/chromeos/webui/login/login_container_ui.h index 9af1013..a44f621 100644 --- a/chrome/browser/chromeos/webui/login/login_container_ui.h +++ b/chrome/browser/chromeos/webui/login/login_container_ui.h @@ -26,7 +26,7 @@ class LoginContainerUIHTMLSource : public ChromeURLDataManager::DataSource { explicit LoginContainerUIHTMLSource(MessageLoop* message_loop); virtual void StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id); virtual std::string GetMimeType(const std::string&) const { return "text/html"; diff --git a/chrome/browser/chromeos/webui/login/login_ui.cc b/chrome/browser/chromeos/webui/login/login_ui.cc index 6ca1a99..dad97ee 100644 --- a/chrome/browser/chromeos/webui/login/login_ui.cc +++ b/chrome/browser/chromeos/webui/login/login_ui.cc @@ -34,7 +34,7 @@ LoginUIHTMLSource::LoginUIHTMLSource(MessageLoop* message_loop) } void LoginUIHTMLSource::StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id) { DictionaryValue localized_strings; SetFontAndTextDirection(&localized_strings); diff --git a/chrome/browser/chromeos/webui/login/login_ui.h b/chrome/browser/chromeos/webui/login/login_ui.h index 05f6ee3..3576780 100644 --- a/chrome/browser/chromeos/webui/login/login_ui.h +++ b/chrome/browser/chromeos/webui/login/login_ui.h @@ -29,7 +29,7 @@ class LoginUIHTMLSource : public ChromeURLDataManager::DataSource { explicit LoginUIHTMLSource(MessageLoop* message_loop); virtual void StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id); virtual std::string GetMimeType(const std::string&) const { return "text/html"; diff --git a/chrome/browser/chromeos/webui/mobile_setup_ui.cc b/chrome/browser/chromeos/webui/mobile_setup_ui.cc index 2c783a0..07c3093 100644 --- a/chrome/browser/chromeos/webui/mobile_setup_ui.cc +++ b/chrome/browser/chromeos/webui/mobile_setup_ui.cc @@ -138,7 +138,7 @@ class MobileSetupUIHTMLSource : public ChromeURLDataManager::DataSource { // Called when the network layer has requested a resource underneath // the path we registered. virtual void StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id); virtual std::string GetMimeType(const std::string&) const { return "text/html"; @@ -398,8 +398,8 @@ MobileSetupUIHTMLSource::MobileSetupUIHTMLSource( } void MobileSetupUIHTMLSource::StartDataRequest(const std::string& path, - bool is_off_the_record, - int request_id) { + bool is_incognito, + int request_id) { chromeos::CellularNetwork* network = GetCellularNetwork(service_path_); DCHECK(network); DictionaryValue strings; diff --git a/chrome/browser/chromeos/webui/register_page_ui.cc b/chrome/browser/chromeos/webui/register_page_ui.cc index 7d2cd7e..4100c9d 100644 --- a/chrome/browser/chromeos/webui/register_page_ui.cc +++ b/chrome/browser/chromeos/webui/register_page_ui.cc @@ -95,7 +95,7 @@ class RegisterPageUIHTMLSource : public ChromeURLDataManager::DataSource { // Called when the network layer has requested a resource underneath // the path we registered. virtual void StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id); virtual std::string GetMimeType(const std::string&) const { return "text/html"; @@ -161,7 +161,7 @@ RegisterPageUIHTMLSource::RegisterPageUIHTMLSource() } void RegisterPageUIHTMLSource::StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id) { // Make sure that chrome://register is available only during // OOBE wizard lifetime and when device has not been registered yet. diff --git a/chrome/browser/chromeos/webui/system_info_ui.cc b/chrome/browser/chromeos/webui/system_info_ui.cc index dcb5404..f164d35 100644 --- a/chrome/browser/chromeos/webui/system_info_ui.cc +++ b/chrome/browser/chromeos/webui/system_info_ui.cc @@ -39,7 +39,7 @@ class SystemInfoUIHTMLSource : public ChromeURLDataManager::DataSource { // Called when the network layer has requested a resource underneath // the path we registered. virtual void StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id); virtual std::string GetMimeType(const std::string&) const { return "text/html"; @@ -87,7 +87,7 @@ SystemInfoUIHTMLSource::SystemInfoUIHTMLSource() } void SystemInfoUIHTMLSource::StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id) { path_ = path; request_id_ = request_id; diff --git a/chrome/browser/chromeos/webui/user_image_source.cc b/chrome/browser/chromeos/webui/user_image_source.cc index 9421699..a6660a9 100644 --- a/chrome/browser/chromeos/webui/user_image_source.cc +++ b/chrome/browser/chromeos/webui/user_image_source.cc @@ -38,7 +38,7 @@ UserImageSource::UserImageSource() UserImageSource::~UserImageSource() {} void UserImageSource::StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id) { // Strip the query param value - we only use it as a hack to ensure our // image gets reloaded instead of being pulled from the browser cache diff --git a/chrome/browser/chromeos/webui/user_image_source.h b/chrome/browser/chromeos/webui/user_image_source.h index 528dd87..d68a4c8 100644 --- a/chrome/browser/chromeos/webui/user_image_source.h +++ b/chrome/browser/chromeos/webui/user_image_source.h @@ -23,7 +23,7 @@ class UserImageSource : public ChromeURLDataManager::DataSource { // Called when the network layer has requested a resource underneath // the path we registered. virtual void StartDataRequest(const std::string& path, - bool is_off_the_record, + bool is_incognito, int request_id); virtual std::string GetMimeType(const std::string&) const; |