Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1148)

Side by Side Diff: chrome\browser\extensions\extension_action_context_menu_model.cc

Issue 501085: Merge 34812 - Add the rightclick context menu for Browser actions and Page Ac... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/249/src/
Patch Set: Created 11 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698