summaryrefslogtreecommitdiffstats
path: root/chrome/browser/page_info_model.h
diff options
context:
space:
mode:
authorjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-30 18:24:56 +0000
committerjcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-30 18:24:56 +0000
commit6fbdc9ca2946e7841adf64e7b8bb9999d8810301 (patch)
tree6b8df37c7d52fbce42354ebf53f141da30f4f660 /chrome/browser/page_info_model.h
parentf0037f16b1ce3bdecd6b99caff499f6ed5b6ef6a (diff)
downloadchromium_src-6fbdc9ca2946e7841adf64e7b8bb9999d8810301.zip
chromium_src-6fbdc9ca2946e7841adf64e7b8bb9999d8810301.tar.gz
chromium_src-6fbdc9ca2946e7841adf64e7b8bb9999d8810301.tar.bz2
Reverting 22070.
Review URL: http://codereview.chromium.org/159645 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22071 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/page_info_model.h')
-rw-r--r--chrome/browser/page_info_model.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/page_info_model.h b/chrome/browser/page_info_model.h
index 526372e..17c80b2 100644
--- a/chrome/browser/page_info_model.h
+++ b/chrome/browser/page_info_model.h
@@ -5,9 +5,9 @@
#ifndef CHROME_BROWSER_PAGE_INFO_MODEL_H_
#define CHROME_BROWSER_PAGE_INFO_MODEL_H_
+#include <string>
#include <vector>
-#include "base/string16.h"
#include "chrome/browser/cancelable_request.h"
#include "chrome/browser/history/history.h"
#include "chrome/browser/tab_contents/navigation_entry.h"
@@ -37,9 +37,9 @@ class PageInfoModel {
struct SectionInfo {
SectionInfo(bool state,
- const string16& title,
- const string16& head_line,
- const string16& description)
+ const std::wstring& title,
+ const std::wstring& head_line,
+ const std::wstring& description)
: state(state),
title(title),
head_line(head_line),
@@ -50,13 +50,13 @@ class PageInfoModel {
// unverified identity over HTTPS).
// The title of the section.
- string16 title;
+ std::wstring title;
// A single line describing the section, optional.
- string16 head_line;
+ std::wstring head_line;
// The full description of what this section is.
- string16 description;
+ std::wstring description;
};
PageInfoModel(Profile* profile,