OLD | NEW |
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 Loading... |
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 |
OLD | NEW |