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

Side by Side Diff: chrome/browser/cocoa/edit_search_engine_cocoa_controller.mm

Issue 2987003: Clean up app_resources.grd:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 5 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) 2010 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/cocoa/edit_search_engine_cocoa_controller.h" 5 #import "chrome/browser/cocoa/edit_search_engine_cocoa_controller.h"
6 6
7 #include "app/l10n_util_mac.h" 7 #include "app/l10n_util_mac.h"
8 #include "app/resource_bundle.h" 8 #include "app/resource_bundle.h"
9 #import "base/mac_util.h" 9 #import "base/mac_util.h"
10 #include "base/sys_string_conversions.h" 10 #include "base/sys_string_conversions.h"
11 #include "chrome/browser/search_engines/template_url_model.h" 11 #include "chrome/browser/search_engines/template_url_model.h"
12 #include "grit/app_resources.h" 12 #include "grit/app_resources.h"
13 #include "grit/generated_resources.h" 13 #include "grit/generated_resources.h"
14 #include "grit/theme_resources.h"
14 #include "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h" 15 #include "third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h"
15 16
16 namespace { 17 namespace {
17 18
18 void ShiftOriginY(NSView* view, CGFloat amount) { 19 void ShiftOriginY(NSView* view, CGFloat amount) {
19 NSPoint origin = [view frame].origin; 20 NSPoint origin = [view frame].origin;
20 origin.y += amount; 21 origin.y += amount;
21 [view setFrameOrigin:origin]; 22 [view setFrameOrigin:origin];
22 } 23 }
23 24
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 toolTip:IDS_SEARCH_ENGINES_INVALID_URL_TT 176 toolTip:IDS_SEARCH_ENGINES_INVALID_URL_TT
176 forImageView:urlImage_ 177 forImageView:urlImage_
177 textField:urlField_]; 178 textField:urlField_];
178 179
179 BOOL isValid = (titleValid && keywordValid && urlValid); 180 BOOL isValid = (titleValid && keywordValid && urlValid);
180 [doneButton_ setEnabled:isValid]; 181 [doneButton_ setEnabled:isValid];
181 return isValid; 182 return isValid;
182 } 183 }
183 184
184 @end 185 @end
OLDNEW
« no previous file with comments | « chrome/browser/autofill/autofill_dialog_controller_mac.mm ('k') | chrome/browser/gtk/options/content_exception_editor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698