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

Side by Side Diff: chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc

Issue 10837331: Options: s/options2/options/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wut Created 8 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) 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 #include "chrome/browser/ui/webui/options2/chromeos/internet_options_handler.h" 5 #include "chrome/browser/ui/webui/options/chromeos/internet_options_handler.h"
6 6
7 #include <ctype.h> 7 #include <ctype.h>
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "ash/shell.h" 13 #include "ash/shell.h"
14 #include "ash/shell_delegate.h" 14 #include "ash/shell_delegate.h"
15 #include "base/base64.h" 15 #include "base/base64.h"
(...skipping 1735 matching lines...) Expand 10 before | Expand all | Expand 10 after
1751 if (default_value) 1751 if (default_value)
1752 value_dict->Set(kTagDefault, default_value->DeepCopy()); 1752 value_dict->Set(kTagDefault, default_value->DeepCopy());
1753 if (ui_data.managed()) 1753 if (ui_data.managed())
1754 value_dict->SetString(kTagControlledBy, kTagPolicy); 1754 value_dict->SetString(kTagControlledBy, kTagPolicy);
1755 else if (ui_data.recommended()) 1755 else if (ui_data.recommended())
1756 value_dict->SetString(kTagControlledBy, kTagRecommended); 1756 value_dict->SetString(kTagControlledBy, kTagRecommended);
1757 settings->Set(key, value_dict); 1757 settings->Set(key, value_dict);
1758 } 1758 }
1759 1759
1760 } // namespace options 1760 } // namespace options
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698