app_shell: Add version number in user agent
[chromium-blink-merge.git] / chrome / browser / web_applications / web_app_chromeos.cc
blobde4108152bdb2201d2e18c361545290647794213
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
3 // found in the LICENSE file.
5 #include "chrome/browser/web_applications/web_app.h"
7 namespace web_app {
9 void UpdateShortcutsForAllApps(Profile* profile,
10 const base::Closure& callback) {
11 callback.Run();
14 namespace internals {
16 bool CreatePlatformShortcuts(
17 const base::FilePath& web_app_path,
18 const ShortcutInfo& shortcut_info,
19 const extensions::FileHandlersInfo& file_handlers_info,
20 const ShortcutLocations& creation_locations,
21 ShortcutCreationReason creation_reason) {
22 return true;
25 void DeletePlatformShortcuts(const base::FilePath& web_app_path,
26 const ShortcutInfo& shortcut_info) {}
28 void UpdatePlatformShortcuts(
29 const base::FilePath& web_app_path,
30 const base::string16& old_app_title,
31 const ShortcutInfo& shortcut_info,
32 const extensions::FileHandlersInfo& file_handlers_info) {}
34 void DeleteAllShortcutsForProfile(const base::FilePath& profile_path) {}
36 } // namespace internals
37 } // namespace web_app