OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/shell_integration.h" | 5 #include "chrome/browser/shell_integration.h" |
6 | 6 |
7 #include <fcntl.h> | 7 #include <fcntl.h> |
8 #include <glib.h> | 8 #include <glib.h> |
9 #include <stdlib.h> | 9 #include <stdlib.h> |
10 #include <sys/stat.h> | 10 #include <sys/stat.h> |
11 #include <sys/types.h> | 11 #include <sys/types.h> |
12 #include <unistd.h> | 12 #include <unistd.h> |
13 | 13 |
14 #include <string> | 14 #include <string> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "base/command_line.h" | 17 #include "base/command_line.h" |
18 #include "base/eintr_wrapper.h" | 18 #include "base/eintr_wrapper.h" |
19 #include "base/environment.h" | 19 #include "base/environment.h" |
20 #include "base/file_path.h" | 20 #include "base/file_path.h" |
21 #include "base/file_util.h" | 21 #include "base/file_util.h" |
22 #include "base/i18n/file_util_icu.h" | 22 #include "base/i18n/file_util_icu.h" |
23 #include "base/memory/scoped_temp_dir.h" | |
24 #include "base/message_loop.h" | 23 #include "base/message_loop.h" |
25 #include "base/path_service.h" | 24 #include "base/path_service.h" |
26 #include "base/process_util.h" | 25 #include "base/process_util.h" |
| 26 #include "base/scoped_temp_dir.h" |
27 #include "base/string_number_conversions.h" | 27 #include "base/string_number_conversions.h" |
28 #include "base/string_tokenizer.h" | 28 #include "base/string_tokenizer.h" |
29 #include "base/task.h" | 29 #include "base/task.h" |
30 #include "base/threading/thread.h" | 30 #include "base/threading/thread.h" |
31 #include "base/utf_string_conversions.h" | 31 #include "base/utf_string_conversions.h" |
32 #include "build/build_config.h" | 32 #include "build/build_config.h" |
33 #include "chrome/browser/web_applications/web_app.h" | 33 #include "chrome/browser/web_applications/web_app.h" |
34 #include "chrome/common/chrome_constants.h" | 34 #include "chrome/common/chrome_constants.h" |
35 #include "chrome/common/chrome_paths.h" | 35 #include "chrome/common/chrome_paths.h" |
36 #include "content/browser/browser_thread.h" | 36 #include "content/browser/browser_thread.h" |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 shortcut_info.extension_id, | 489 shortcut_info.extension_id, |
490 shortcut_info.title, | 490 shortcut_info.title, |
491 icon_name); | 491 icon_name); |
492 | 492 |
493 if (shortcut_info.create_on_desktop) | 493 if (shortcut_info.create_on_desktop) |
494 CreateShortcutOnDesktop(shortcut_filename, contents); | 494 CreateShortcutOnDesktop(shortcut_filename, contents); |
495 | 495 |
496 if (shortcut_info.create_in_applications_menu) | 496 if (shortcut_info.create_in_applications_menu) |
497 CreateShortcutInApplicationsMenu(shortcut_filename, contents); | 497 CreateShortcutInApplicationsMenu(shortcut_filename, contents); |
498 } | 498 } |
OLD | NEW |