buffet: Remove 'chromeos' namespace and move everything to buffet NS As discussed, moved all the classes out of chromeos namespace into 'buffet. Also fixed a number of cpplint's warnings. BUG=None TEST=Everything still compiles and unit tests succeed. Change-Id: Ide864acb2504627404966727f66d353af60e531d Reviewed-on: https://chromium-review.googlesource.com/198971 Reviewed-by: Christopher Wiley <wiley@chromium.org> Commit-Queue: Alex Vakulenko <avakulenko@chromium.org> Tested-by: Alex Vakulenko <avakulenko@chromium.org>
diff --git a/buffet/map_utils.h b/buffet/map_utils.h index c67fa3e..87d8d37 100644 --- a/buffet/map_utils.h +++ b/buffet/map_utils.h
@@ -6,9 +6,10 @@ #define BUFFET_MAP_UTILS_H_ #include <map> +#include <utility> #include <vector> -namespace chromeos { +namespace buffet { // Given an STL map returns a vector containing all keys from the map template<typename T> @@ -41,6 +42,6 @@ return vector; } -} // namespace chromeos +} // namespace buffet -#endif // BUFFET_MAP_UTILS_H_ +#endif // BUFFET_MAP_UTILS_H_