Chromium Code Reviews| Index: chromeos/network/onc_mapper.h |
| diff --git a/chrome/browser/chromeos/network_settings/onc_mapper.h b/chromeos/network/onc_mapper.h |
| similarity index 94% |
| rename from chrome/browser/chromeos/network_settings/onc_mapper.h |
| rename to chromeos/network/onc_mapper.h |
| index 0f6705b1a237d1f9f34b844262d896ab2d57b521..e441c0d88db430c1f1fa364c719d2e3d70eecd38 100644 |
| --- a/chrome/browser/chromeos/network_settings/onc_mapper.h |
| +++ b/chromeos/network/onc_mapper.h |
| @@ -2,12 +2,13 @@ |
| // 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_MAPPER_H_ |
| -#define CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_MAPPER_H_ |
| +#ifndef CHROMEOS_NETWORK_ONC_MAPPER_H_ |
| +#define CHROMEOS_NETWORK_ONC_MAPPER_H_ |
| #include <string> |
| #include "base/memory/scoped_ptr.h" |
| +#include "chromeos/chromeos_export.h" |
| namespace base { |
| class Value; |
| @@ -33,7 +34,7 @@ struct OncValueSignature; |
| // |
| // The ONC validator and normalizer derive from this class and adapt the default |
| // copy behavior. |
| -class Mapper { |
| +class CHROMEOS_EXPORT Mapper { |
|
pneubeck (no reviews)
2012/11/28 22:20:41
do we have to export base classes? otherwise Mappe
Greg Spencer (Chromium)
2012/11/28 23:09:14
No, we don't. Done.
|
| public: |
| Mapper(); |
| virtual ~Mapper(); |
| @@ -100,4 +101,4 @@ class Mapper { |
| } // namespace onc |
| } // namespace chromeos |
| -#endif // CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_MAPPER_H_ |
| +#endif // CHROMEOS_NETWORK_ONC_MAPPER_H_ |