diff options
Diffstat (limited to 'chrome/browser/page_info_model.h')
-rw-r--r-- | chrome/browser/page_info_model.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/page_info_model.h b/chrome/browser/page_info_model.h index 17c80b2..526372e 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 std::wstring& title, - const std::wstring& head_line, - const std::wstring& description) + const string16& title, + const string16& head_line, + const string16& description) : state(state), title(title), head_line(head_line), @@ -50,13 +50,13 @@ class PageInfoModel { // unverified identity over HTTPS). // The title of the section. - std::wstring title; + string16 title; // A single line describing the section, optional. - std::wstring head_line; + string16 head_line; // The full description of what this section is. - std::wstring description; + string16 description; }; PageInfoModel(Profile* profile, |