| 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 #ifndef CHROME_BROWSER_EXTENSIONS_SETTINGS_SETTINGS_NAMESPACE_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_SETTINGS_SETTINGS_NAMESPACE_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_SETTINGS_SETTINGS_NAMESPACE_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_SETTINGS_SETTINGS_NAMESPACE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 namespace extensions { | 10 namespace extensions { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 // Converts a string representation of a namespace to its namespace, or INVALID | 26 // Converts a string representation of a namespace to its namespace, or INVALID |
| 27 // if the string doesn't map to one. | 27 // if the string doesn't map to one. |
| 28 Namespace FromString(const std::string& ns_string); | 28 Namespace FromString(const std::string& ns_string); |
| 29 | 29 |
| 30 } // namespace settings_namespace | 30 } // namespace settings_namespace |
| 31 | 31 |
| 32 } // namespace extensions | 32 } // namespace extensions |
| 33 | 33 |
| 34 #endif // CHROME_BROWSER_EXTENSIONS_SETTINGS_SETTINGS_NAMESPACE_H_ | 34 #endif // CHROME_BROWSER_EXTENSIONS_SETTINGS_SETTINGS_NAMESPACE_H_ |
| OLD | NEW |