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

Side by Side Diff: chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller.mm

Issue 2911773002: Clean up unused grit header includes in chrome/ (Closed)
Patch Set: rebase Created 3 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller.h" 5 #import "chrome/browser/ui/cocoa/bookmarks/bookmark_name_folder_controller.h"
6 6
7 #include "base/mac/bundle_locations.h" 7 #include "base/mac/bundle_locations.h"
8 #include "base/strings/sys_string_conversions.h" 8 #include "base/strings/sys_string_conversions.h"
9 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 9 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
10 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
11 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h" 11 #include "chrome/browser/ui/cocoa/bookmarks/bookmark_model_observer_for_cocoa.h"
12 #include "chrome/grit/generated_resources.h"
13 #include "components/strings/grit/components_strings.h" 12 #include "components/strings/grit/components_strings.h"
14 #include "ui/base/l10n/l10n_util.h" 13 #include "ui/base/l10n/l10n_util.h"
15 #include "ui/base/l10n/l10n_util_mac.h" 14 #include "ui/base/l10n/l10n_util_mac.h"
16 15
17 using bookmarks::BookmarkModel; 16 using bookmarks::BookmarkModel;
18 using bookmarks::BookmarkNode; 17 using bookmarks::BookmarkNode;
19 18
20 @implementation BookmarkNameFolderController 19 @implementation BookmarkNameFolderController
21 20
22 // Common initializer (private). 21 // Common initializer (private).
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 125
127 - (void)setFolderName:(NSString*)name { 126 - (void)setFolderName:(NSString*)name {
128 [nameField_ setStringValue:name]; 127 [nameField_ setStringValue:name];
129 } 128 }
130 129
131 - (NSButton*)okButton { 130 - (NSButton*)okButton {
132 return okButton_; 131 return okButton_;
133 } 132 }
134 133
135 @end // BookmarkNameFolderController 134 @end // BookmarkNameFolderController
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698