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/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/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
13 #include "chrome/browser/ui/browser.h" | 13 #include "chrome/browser/ui/browser.h" |
14 #include "chrome/browser/ui/toolbar/encoding_menu_controller.h" | 14 #include "chrome/browser/ui/toolbar/encoding_menu_controller.h" |
15 | 15 |
16 namespace { | 16 namespace { |
17 | 17 |
18 void AddSeparatorToMenu(NSMenu *parent_menu) { | 18 void AddSeparatorToMenu(NSMenu *parent_menu) { |
19 NSMenuItem* separator = [NSMenuItem separatorItem]; | 19 NSMenuItem* separator = [NSMenuItem separatorItem]; |
20 [parent_menu addItem:separator]; | 20 [parent_menu addItem:separator]; |
21 } | 21 } |
22 | 22 |
(...skipping 28 matching lines...) Expand all Loading... |
51 if (item_id == 0) { | 51 if (item_id == 0) { |
52 AddSeparatorToMenu(encoding_menu); | 52 AddSeparatorToMenu(encoding_menu); |
53 } else { | 53 } else { |
54 NSString *localized_title = | 54 NSString *localized_title = |
55 base::SysUTF16ToNSString(localized_title_string16); | 55 base::SysUTF16ToNSString(localized_title_string16); |
56 AppendMenuItem(encoding_menu, item_id, localized_title); | 56 AppendMenuItem(encoding_menu, item_id, localized_title); |
57 } | 57 } |
58 } | 58 } |
59 | 59 |
60 } | 60 } |
OLD | NEW |