Chromium Code Reviews| Index: base/version.cc |
| diff --git a/base/version.cc b/base/version.cc |
| index f75873345ba57f82a95044c26f394a404175eae3..9ebc79240be0992bfee82aad040218986995d8f9 100644 |
| --- a/base/version.cc |
| +++ b/base/version.cc |
| @@ -75,6 +75,8 @@ int CompareVersionComponents(const std::vector<uint16>& components1, |
| } // namespace |
| +namespace base { |
|
brettw
2013/04/20 04:15:10
I usually just wrap the whole file (including the
xhwang
2013/04/20 05:53:44
Done.
|
| + |
| Version::Version() { |
| } |
| @@ -170,3 +172,5 @@ const std::string Version::GetString() const { |
| version_str.append(base::IntToString(components_[count - 1])); |
| return version_str; |
| } |
| + |
| +} // namespace base |