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

Side by Side Diff: chrome/browser/policy/configuration_policy_provider_win.cc

Issue 6004003: Introduce a separate preference for 'proxy server mode' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Extraction undone - as per Mattias' request Created 9 years, 12 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/policy/configuration_policy_provider_win.h" 5 #include "chrome/browser/policy/configuration_policy_provider_win.h"
6 6
7 #include <userenv.h> 7 #include <userenv.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 store->Apply(current->policy_type, 279 store->Apply(current->policy_type,
280 Value::CreateIntegerValue(int_value)); 280 Value::CreateIntegerValue(int_value));
281 } 281 }
282 break; 282 break;
283 } 283 }
284 default: 284 default:
285 NOTREACHED(); 285 NOTREACHED();
286 return false; 286 return false;
287 } 287 }
288 } 288 }
289 store->Completed();
289 290
290 return true; 291 return true;
291 } 292 }
292 293
293 } // namespace policy 294 } // namespace policy
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698