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

Side by Side Diff: chrome/browser/ui/cocoa/encoding_menu_controller_delegate_mac.mm

Issue 6260001: Cleanup: Remove unneeded chrome/browser/ui/browser.h usage.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months 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/ui/cocoa/encoding_menu_controller_delegate_mac.h" 5 #include "chrome/browser/ui/cocoa/encoding_menu_controller_delegate_mac.h"
6 6
7 #import <Cocoa/Cocoa.h> 7 #import <Cocoa/Cocoa.h>
8 8
9 #include "base/string16.h" 9 #include "base/string16.h"
10 #include "base/sys_string_conversions.h" 10 #include "base/sys_string_conversions.h"
11 #include "chrome/app/chrome_command_ids.h" 11 #include "chrome/app/chrome_command_ids.h"
12 #include "chrome/browser/profiles/profile.h" 12 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/browser/ui/browser.h"
14 #include "chrome/browser/ui/toolbar/encoding_menu_controller.h" 13 #include "chrome/browser/ui/toolbar/encoding_menu_controller.h"
15 14
16 namespace { 15 namespace {
17 16
18 void AddSeparatorToMenu(NSMenu *parent_menu) { 17 void AddSeparatorToMenu(NSMenu *parent_menu) {
19 NSMenuItem* separator = [NSMenuItem separatorItem]; 18 NSMenuItem* separator = [NSMenuItem separatorItem];
20 [parent_menu addItem:separator]; 19 [parent_menu addItem:separator];
21 } 20 }
22 21
23 void AppendMenuItem(NSMenu *parent_menu, int tag, NSString *title) { 22 void AppendMenuItem(NSMenu *parent_menu, int tag, NSString *title) {
(...skipping 27 matching lines...) Expand all
51 if (item_id == 0) { 50 if (item_id == 0) {
52 AddSeparatorToMenu(encoding_menu); 51 AddSeparatorToMenu(encoding_menu);
53 } else { 52 } else {
54 NSString *localized_title = 53 NSString *localized_title =
55 base::SysUTF16ToNSString(localized_title_string16); 54 base::SysUTF16ToNSString(localized_title_string16);
56 AppendMenuItem(encoding_menu, item_id, localized_title); 55 AppendMenuItem(encoding_menu, item_id, localized_title);
57 } 56 }
58 } 57 }
59 58
60 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698