| Index: chromeos/network/onc/onc_translator.h | 
| diff --git a/chrome/browser/chromeos/network_settings/onc_translator.h b/chromeos/network/onc/onc_translator.h | 
| similarity index 87% | 
| rename from chrome/browser/chromeos/network_settings/onc_translator.h | 
| rename to chromeos/network/onc/onc_translator.h | 
| index 900851f3f0c7a48980df1d6533a176d441364201..270247c65c199d7c2a243ef4d6af79f7b5173310 100644 | 
| --- a/chrome/browser/chromeos/network_settings/onc_translator.h | 
| +++ b/chromeos/network/onc/onc_translator.h | 
| @@ -2,10 +2,11 @@ | 
| // Use of this source code is governed by a BSD-style license that can be | 
| // found in the LICENSE file. | 
|  | 
| -#ifndef CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_TRANSLATOR_H_ | 
| -#define CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_TRANSLATOR_H_ | 
| +#ifndef CHROMEOS_NETWORK_ONC_ONC_TRANSLATOR_H_ | 
| +#define CHROMEOS_NETWORK_ONC_ONC_TRANSLATOR_H_ | 
|  | 
| #include "base/memory/scoped_ptr.h" | 
| +#include "chromeos/chromeos_export.h" | 
|  | 
| namespace base { | 
| class DictionaryValue; | 
| @@ -23,6 +24,7 @@ struct OncValueSignature; | 
| // | 
| // This function is used to translate network settings from ONC to Shill's | 
| // format before sending them to Shill. | 
| +CHROMEOS_EXPORT | 
| scoped_ptr<base::DictionaryValue> TranslateONCObjectToShill( | 
| const OncValueSignature* signature, | 
| const base::DictionaryValue& onc_object); | 
| @@ -35,6 +37,7 @@ scoped_ptr<base::DictionaryValue> TranslateONCObjectToShill( | 
| // before sending them to the UI. The result doesn't have to be valid ONC, but | 
| // only a subset of it and includes only the values that are actually required | 
| // by the UI. | 
| +CHROMEOS_EXPORT | 
| scoped_ptr<base::DictionaryValue> TranslateShillServiceToONCPart( | 
| const base::DictionaryValue& shill_dictionary, | 
| const OncValueSignature* onc_signature); | 
| @@ -42,4 +45,4 @@ scoped_ptr<base::DictionaryValue> TranslateShillServiceToONCPart( | 
| }  // namespace onc | 
| }  // namespace chromeos | 
|  | 
| -#endif  // CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_TRANSLATOR_H_ | 
| +#endif  // CHROMEOS_NETWORK_ONC_ONC_TRANSLATOR_H_ | 
|  |