Chromium Code Reviews

Side by Side Diff: chrome/browser/ui/cocoa/options/search_engine_list_model.mm

Issue 6339002: [Mac] Consolidate all files relating to preferences in a subdir of c/b/ui/coc... (Closed) Base URL: svn://svn.chromium.org/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.
Jump to:
View unified diff | | 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 #import "chrome/browser/ui/cocoa/search_engine_list_model.h" 5 #import "chrome/browser/ui/cocoa/options/search_engine_list_model.h"
6 6
7 #include "base/sys_string_conversions.h" 7 #include "base/sys_string_conversions.h"
8 #include "chrome/browser/search_engines/template_url.h" 8 #include "chrome/browser/search_engines/template_url.h"
9 #include "chrome/browser/search_engines/template_url_model.h" 9 #include "chrome/browser/search_engines/template_url_model.h"
10 #include "chrome/browser/search_engines/template_url_model_observer.h" 10 #include "chrome/browser/search_engines/template_url_model_observer.h"
11 11
12 NSString* const kSearchEngineListModelChangedNotification = 12 NSString* const kSearchEngineListModelChangedNotification =
13 @"kSearchEngineListModelChangedNotification"; 13 @"kSearchEngineListModelChangedNotification";
14 14
15 @interface SearchEngineListModel(Private) 15 @interface SearchEngineListModel(Private)
(...skipping 111 matching lines...)
127 } 127 }
128 DCHECK(false); 128 DCHECK(false);
129 } 129 }
130 } 130 }
131 131
132 // Return TRUE if the default is managed via policy. 132 // Return TRUE if the default is managed via policy.
133 - (BOOL)isDefaultManaged { 133 - (BOOL)isDefaultManaged {
134 return model_->is_default_search_managed(); 134 return model_->is_default_search_managed();
135 } 135 }
136 @end 136 @end
OLDNEW

Powered by Google App Engine