OLD | NEW |
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 #ifndef CHROME_BROWSER_UI_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 | 69 |
70 // UI elements on the dialog. | 70 // UI elements on the dialog. |
71 views::View* app_info_; | 71 views::View* app_info_; |
72 views::Label* create_shortcuts_label_; | 72 views::Label* create_shortcuts_label_; |
73 views::Checkbox* desktop_check_box_; | 73 views::Checkbox* desktop_check_box_; |
74 views::Checkbox* menu_check_box_; | 74 views::Checkbox* menu_check_box_; |
75 views::Checkbox* quick_launch_check_box_; | 75 views::Checkbox* quick_launch_check_box_; |
76 | 76 |
77 // Target shortcut info. | 77 // Target shortcut info. |
78 ShellIntegration::ShortcutInfo shortcut_info_; | 78 ShellIntegration::ShortcutInfo shortcut_info_; |
79 string16 shortcut_menu_subdir_; | 79 // If false, the shortcut will be created in the root level of the Start Menu. |
| 80 bool create_in_chrome_apps_subdir_; |
80 | 81 |
81 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutView); | 82 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutView); |
82 }; | 83 }; |
83 | 84 |
84 // Create an application shortcut pointing to a URL. | 85 // Create an application shortcut pointing to a URL. |
85 class CreateUrlApplicationShortcutView : public CreateApplicationShortcutView { | 86 class CreateUrlApplicationShortcutView : public CreateApplicationShortcutView { |
86 public: | 87 public: |
87 explicit CreateUrlApplicationShortcutView(content::WebContents* web_contents); | 88 explicit CreateUrlApplicationShortcutView(content::WebContents* web_contents); |
88 virtual ~CreateUrlApplicationShortcutView(); | 89 virtual ~CreateUrlApplicationShortcutView(); |
89 | 90 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 | 136 |
136 const extensions::Extension* app_; | 137 const extensions::Extension* app_; |
137 base::Closure close_callback_; | 138 base::Closure close_callback_; |
138 | 139 |
139 base::WeakPtrFactory<CreateChromeApplicationShortcutView> weak_ptr_factory_; | 140 base::WeakPtrFactory<CreateChromeApplicationShortcutView> weak_ptr_factory_; |
140 | 141 |
141 DISALLOW_COPY_AND_ASSIGN(CreateChromeApplicationShortcutView); | 142 DISALLOW_COPY_AND_ASSIGN(CreateChromeApplicationShortcutView); |
142 }; | 143 }; |
143 | 144 |
144 #endif // CHROME_BROWSER_UI_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ | 145 #endif // CHROME_BROWSER_UI_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ |
OLD | NEW |