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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
71 | 71 |
72 // UI elements on the dialog. | 72 // UI elements on the dialog. |
73 views::View* app_info_; | 73 views::View* app_info_; |
74 views::Label* create_shortcuts_label_; | 74 views::Label* create_shortcuts_label_; |
75 views::Checkbox* desktop_check_box_; | 75 views::Checkbox* desktop_check_box_; |
76 views::Checkbox* menu_check_box_; | 76 views::Checkbox* menu_check_box_; |
77 views::Checkbox* quick_launch_check_box_; | 77 views::Checkbox* quick_launch_check_box_; |
78 | 78 |
79 // Target shortcut info. | 79 // Target shortcut info. |
80 ShellIntegration::ShortcutInfo shortcut_info_; | 80 ShellIntegration::ShortcutInfo shortcut_info_; |
81 string16 shortcut_menu_subdir_; | 81 bool create_in_chrome_apps_subdir_; |
Matt Giuca
2013/05/15 05:19:45
Comment here: // If false, the shortcut will be cr
calamity
2013/08/27 07:59:35
Done.
| |
82 | 82 |
83 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutView); | 83 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutView); |
84 }; | 84 }; |
85 | 85 |
86 // Create an application shortcut pointing to a URL. | 86 // Create an application shortcut pointing to a URL. |
87 class CreateUrlApplicationShortcutView : public CreateApplicationShortcutView { | 87 class CreateUrlApplicationShortcutView : public CreateApplicationShortcutView { |
88 public: | 88 public: |
89 explicit CreateUrlApplicationShortcutView(content::WebContents* web_contents); | 89 explicit CreateUrlApplicationShortcutView(content::WebContents* web_contents); |
90 virtual ~CreateUrlApplicationShortcutView(); | 90 virtual ~CreateUrlApplicationShortcutView(); |
91 | 91 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
128 const ShellIntegration::ShortcutInfo& shortcut_info); | 128 const ShellIntegration::ShortcutInfo& shortcut_info); |
129 | 129 |
130 const extensions::Extension* app_; | 130 const extensions::Extension* app_; |
131 | 131 |
132 base::WeakPtrFactory<CreateChromeApplicationShortcutView> weak_ptr_factory_; | 132 base::WeakPtrFactory<CreateChromeApplicationShortcutView> weak_ptr_factory_; |
133 | 133 |
134 DISALLOW_COPY_AND_ASSIGN(CreateChromeApplicationShortcutView); | 134 DISALLOW_COPY_AND_ASSIGN(CreateChromeApplicationShortcutView); |
135 }; | 135 }; |
136 | 136 |
137 #endif // CHROME_BROWSER_UI_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ | 137 #endif // CHROME_BROWSER_UI_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ |
OLD | NEW |