summaryrefslogtreecommitdiffstats
path: root/chrome/browser/web_applications/web_app_chromeos.cc
diff options
context:
space:
mode:
authorjackhou@chromium.org <jackhou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-15 08:23:17 +0000
committerjackhou@chromium.org <jackhou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-15 08:23:17 +0000
commit9b1b5fe4dc536da2cbc01a4d223ad7fff424fcff (patch)
tree82ad613231f9cb87b0ca87685f3dccb8439760ac /chrome/browser/web_applications/web_app_chromeos.cc
parente43a047c9c5b4295111716de2b09fd8f5832c9ea (diff)
downloadchromium_src-9b1b5fe4dc536da2cbc01a4d223ad7fff424fcff.zip
chromium_src-9b1b5fe4dc536da2cbc01a4d223ad7fff424fcff.tar.gz
chromium_src-9b1b5fe4dc536da2cbc01a4d223ad7fff424fcff.tar.bz2
Remove uses of web_app:: inside web_app.
Cleanup. BUG=None Review URL: https://codereview.chromium.org/281533003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270636 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/web_applications/web_app_chromeos.cc')
-rw-r--r--chrome/browser/web_applications/web_app_chromeos.cc11
1 files changed, 5 insertions, 6 deletions
diff --git a/chrome/browser/web_applications/web_app_chromeos.cc b/chrome/browser/web_applications/web_app_chromeos.cc
index 717c29d..d21b9bc 100644
--- a/chrome/browser/web_applications/web_app_chromeos.cc
+++ b/chrome/browser/web_applications/web_app_chromeos.cc
@@ -9,21 +9,20 @@ namespace internals {
bool CreatePlatformShortcuts(
const base::FilePath& web_app_path,
- const web_app::ShortcutInfo& shortcut_info,
+ const ShortcutInfo& shortcut_info,
const extensions::FileHandlersInfo& file_handlers_info,
- const web_app::ShortcutLocations& creation_locations,
+ const ShortcutLocations& creation_locations,
ShortcutCreationReason creation_reason) {
return true;
}
-void DeletePlatformShortcuts(
- const base::FilePath& web_app_path,
- const web_app::ShortcutInfo& shortcut_info) {}
+void DeletePlatformShortcuts(const base::FilePath& web_app_path,
+ const ShortcutInfo& shortcut_info) {}
void UpdatePlatformShortcuts(
const base::FilePath& web_app_path,
const base::string16& old_app_title,
- const web_app::ShortcutInfo& shortcut_info,
+ const ShortcutInfo& shortcut_info,
const extensions::FileHandlersInfo& file_handlers_info) {}
void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) {}