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

Side by Side Diff: chrome/browser/configuration_policy_pref_store.cc

Issue 3058027: Add #include utf_string_conversions.h to all files that use ASCIIToWide and... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 4 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) 2010 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 #include "chrome/browser/configuration_policy_pref_store.h" 5 #include "chrome/browser/configuration_policy_pref_store.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/string16.h" 10 #include "base/string16.h"
11 #include "base/string_util.h" 11 #include "base/string_util.h"
12 #include "base/utf_string_conversions.h"
12 #include "base/values.h" 13 #include "base/values.h"
13 #include "chrome/browser/configuration_policy_provider.h" 14 #include "chrome/browser/configuration_policy_provider.h"
14 #if defined(OS_WIN) 15 #if defined(OS_WIN)
15 #include "chrome/browser/configuration_policy_provider_win.h" 16 #include "chrome/browser/configuration_policy_provider_win.h"
16 #elif defined(OS_MACOSX) 17 #elif defined(OS_MACOSX)
17 #include "chrome/browser/configuration_policy_provider_mac.h" 18 #include "chrome/browser/configuration_policy_provider_mac.h"
18 #elif defined(OS_POSIX) 19 #elif defined(OS_POSIX)
19 #include "chrome/browser/config_dir_policy_provider.h" 20 #include "chrome/browser/config_dir_policy_provider.h"
20 #endif 21 #endif
21 #include "chrome/browser/dummy_configuration_policy_provider.h" 22 #include "chrome/browser/dummy_configuration_policy_provider.h"
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 return; 356 return;
356 357
357 if (ApplyPolicyFromMap(policy, value, simple_policy_map_, 358 if (ApplyPolicyFromMap(policy, value, simple_policy_map_,
358 arraysize(simple_policy_map_))) 359 arraysize(simple_policy_map_)))
359 return; 360 return;
360 361
361 // Other policy implementations go here. 362 // Other policy implementations go here.
362 NOTIMPLEMENTED(); 363 NOTIMPLEMENTED();
363 delete value; 364 delete value;
364 } 365 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/status/power_menu_button.cc ('k') | chrome/browser/diagnostics/sqlite_diagnostics.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698