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

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

Issue 14993013: Windows: When an app is updated and its name changes, recreate shortcuts. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Respond to reviewer feedback. Created 7 years, 7 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 ShellIntegration::ShortcutInfo& shortcut_info,
13 const ShellIntegration::ShortcutLocations& creation_locations) { 13 const ShellIntegration::ShortcutLocations& creation_locations) {
14 return true; 14 return true;
15 } 15 }
16 16
17 void DeletePlatformShortcuts( 17 void DeletePlatformShortcuts(
18 const base::FilePath& web_app_path, 18 const base::FilePath& web_app_path,
19 const ShellIntegration::ShortcutInfo& shortcut_info) {} 19 const ShellIntegration::ShortcutInfo& shortcut_info) {}
20 20
21 void UpdatePlatformShortcuts( 21 void UpdatePlatformShortcuts(
22 const base::FilePath& web_app_path, 22 const base::FilePath& web_app_path,
23 const string16& old_app_title,
23 const ShellIntegration::ShortcutInfo& shortcut_info) {} 24 const ShellIntegration::ShortcutInfo& shortcut_info) {}
24 25
25 } // namespace internals 26 } // namespace internals
26 } // namespace web_app 27 } // namespace web_app
OLDNEW
« no previous file with comments | « chrome/browser/web_applications/web_app.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