diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-11 19:14:40 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-11 19:14:40 +0000 |
commit | a04db824d215692e471a1c21f8b8422eebdb3223 (patch) | |
tree | 5535c4b74b85444774b4bcd33e72be406543da88 /chrome/browser/shell_integration.h | |
parent | cd7964025d2a2b9dc285bc52020ab907c7950f6a (diff) | |
download | chromium_src-a04db824d215692e471a1c21f8b8422eebdb3223.zip chromium_src-a04db824d215692e471a1c21f8b8422eebdb3223.tar.gz chromium_src-a04db824d215692e471a1c21f8b8422eebdb3223.tar.bz2 |
Convert string16 to base::string16 in chrome/browser
TBR=sky
Review URL: https://codereview.chromium.org/112943002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240149 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/shell_integration.h')
-rw-r--r-- | chrome/browser/shell_integration.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/shell_integration.h b/chrome/browser/shell_integration.h index 8d28798..f9417dc9 100644 --- a/chrome/browser/shell_integration.h +++ b/chrome/browser/shell_integration.h @@ -98,8 +98,8 @@ class ShellIntegration { // is still used to generate the app id (windows app id, not chrome app id). std::string extension_id; bool is_platform_app; - string16 title; - string16 description; + base::string16 title; + base::string16 description; base::FilePath extension_path; gfx::ImageFamily favicon; base::FilePath profile_path; @@ -171,16 +171,16 @@ class ShellIntegration { // Note: If the app has an installation specific suffix (e.g. on user-level // Chrome installs), |app_name| should already be suffixed, this method will // then further suffix it with the profile id as described above. - static string16 GetAppModelIdForProfile(const string16& app_name, + static base::string16 GetAppModelIdForProfile(const base::string16& app_name, const base::FilePath& profile_path); // Generates an application user model ID (AppUserModelId) for Chromium by // calling GetAppModelIdForProfile() with ShellUtil::GetAppId() as app_name. - static string16 GetChromiumModelIdForProfile( + static base::string16 GetChromiumModelIdForProfile( const base::FilePath& profile_path); // Get the AppUserModelId for the App List, for the profile in |profile_path|. - static string16 GetAppListAppModelIdForProfile( + static base::string16 GetAppListAppModelIdForProfile( const base::FilePath& profile_path); // Migrates existing chrome shortcuts by tagging them with correct app id. |