| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/extensions/extension_action_context_menu_model.h" | 5 #include "chrome/browser/extensions/extension_action_context_menu_model.h" |
| 6 | 6 |
| 7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
| 8 #include "chrome/browser/browser_list.h" | 8 #include "chrome/browser/browser_list.h" |
| 9 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
| 10 #include "chrome/browser/extensions/extensions_service.h" | 10 #include "chrome/browser/extensions/extensions_service.h" |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 case MANAGE: { | 96 case MANAGE: { |
| 97 browser->OpenURL(GURL(chrome::kChromeUIExtensionsURL), GURL(), | 97 browser->OpenURL(GURL(chrome::kChromeUIExtensionsURL), GURL(), |
| 98 NEW_FOREGROUND_TAB, PageTransition::LINK); | 98 NEW_FOREGROUND_TAB, PageTransition::LINK); |
| 99 break; | 99 break; |
| 100 } | 100 } |
| 101 default: | 101 default: |
| 102 NOTREACHED() << "Unknown option"; | 102 NOTREACHED() << "Unknown option"; |
| 103 break; | 103 break; |
| 104 } | 104 } |
| 105 } | 105 } |
| OLD | NEW |