OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/ui/ash/launcher/extension_launcher_context_menu.h" | 5 #include "chrome/browser/ui/ash/launcher/extension_launcher_context_menu.h" |
6 | 6 |
| 7 #include "ash/common/shelf/shelf_item_delegate.h" |
7 #include "ash/shelf/shelf.h" | 8 #include "ash/shelf/shelf.h" |
8 #include "ash/shelf/shelf_item_delegate.h" | |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "chrome/browser/extensions/context_menu_matcher.h" | 10 #include "chrome/browser/extensions/context_menu_matcher.h" |
11 #include "chrome/browser/extensions/extension_util.h" | 11 #include "chrome/browser/extensions/extension_util.h" |
12 #include "chrome/browser/prefs/incognito_mode_prefs.h" | 12 #include "chrome/browser/prefs/incognito_mode_prefs.h" |
13 #include "chrome/browser/profiles/profile.h" | 13 #include "chrome/browser/profiles/profile.h" |
14 #include "chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controll
er.h" | 14 #include "chrome/browser/ui/ash/launcher/browser_shortcut_launcher_item_controll
er.h" |
15 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h" | 15 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h" |
16 #include "chrome/common/extensions/extension_constants.h" | 16 #include "chrome/common/extensions/extension_constants.h" |
17 #include "chrome/grit/generated_resources.h" | 17 #include "chrome/grit/generated_resources.h" |
18 #include "content/public/common/context_menu_params.h" | 18 #include "content/public/common/context_menu_params.h" |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 case MENU_NEW_INCOGNITO_WINDOW: | 222 case MENU_NEW_INCOGNITO_WINDOW: |
223 controller()->CreateNewIncognitoWindow(); | 223 controller()->CreateNewIncognitoWindow(); |
224 break; | 224 break; |
225 default: | 225 default: |
226 if (extension_items_) { | 226 if (extension_items_) { |
227 extension_items_->ExecuteCommand(command_id, nullptr, nullptr, | 227 extension_items_->ExecuteCommand(command_id, nullptr, nullptr, |
228 content::ContextMenuParams()); | 228 content::ContextMenuParams()); |
229 } | 229 } |
230 } | 230 } |
231 } | 231 } |
OLD | NEW |