Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: chrome/browser/web_applications/web_app_chromeos.cc

Issue 231673005: Move ShortcutInfo, ShortcutLocations from ShellIntegration to web_app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/web_applications/web_app.h" 5 #include "chrome/browser/web_applications/web_app.h"
6 6
7 namespace web_app { 7 namespace web_app {
8 namespace internals { 8 namespace internals {
9 9
10 bool CreatePlatformShortcuts( 10 bool CreatePlatformShortcuts(
11 const base::FilePath& web_app_path, 11 const base::FilePath& web_app_path,
12 const ShellIntegration::ShortcutInfo& shortcut_info, 12 const web_app::ShortcutInfo& shortcut_info,
13 const extensions::FileHandlersInfo& file_handlers_info, 13 const extensions::FileHandlersInfo& file_handlers_info,
14 const ShellIntegration::ShortcutLocations& creation_locations, 14 const web_app::ShortcutLocations& creation_locations,
15 ShortcutCreationReason creation_reason) { 15 ShortcutCreationReason creation_reason) {
16 return true; 16 return true;
17 } 17 }
18 18
19 void DeletePlatformShortcuts( 19 void DeletePlatformShortcuts(
20 const base::FilePath& web_app_path, 20 const base::FilePath& web_app_path,
21 const ShellIntegration::ShortcutInfo& shortcut_info) {} 21 const web_app::ShortcutInfo& shortcut_info) {}
22 22
23 void UpdatePlatformShortcuts( 23 void UpdatePlatformShortcuts(
24 const base::FilePath& web_app_path, 24 const base::FilePath& web_app_path,
25 const base::string16& old_app_title, 25 const base::string16& old_app_title,
26 const ShellIntegration::ShortcutInfo& shortcut_info, 26 const web_app::ShortcutInfo& shortcut_info,
27 const extensions::FileHandlersInfo& file_handlers_info) {} 27 const extensions::FileHandlersInfo& file_handlers_info) {}
28 28
29 void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) {} 29 void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) {}
30 30
31 } // namespace internals 31 } // namespace internals
32 } // namespace web_app 32 } // namespace web_app
OLDNEW
« no previous file with comments | « chrome/browser/web_applications/web_app_android.cc ('k') | chrome/browser/web_applications/web_app_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698