Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Side by Side Diff: base/strings/nullable_string16.h

Issue 981803003: base: Add/Fix namespace closing comments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 BASE_STRINGS_NULLABLE_STRING16_H_ 5 #ifndef BASE_STRINGS_NULLABLE_STRING16_H_
6 #define BASE_STRINGS_NULLABLE_STRING16_H_ 6 #define BASE_STRINGS_NULLABLE_STRING16_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 9
10 #include "base/base_export.h" 10 #include "base/base_export.h"
(...skipping 23 matching lines...) Expand all
34 return a.is_null() == b.is_null() && a.string() == b.string(); 34 return a.is_null() == b.is_null() && a.string() == b.string();
35 } 35 }
36 36
37 inline bool operator!=(const NullableString16& a, const NullableString16& b) { 37 inline bool operator!=(const NullableString16& a, const NullableString16& b) {
38 return !(a == b); 38 return !(a == b);
39 } 39 }
40 40
41 BASE_EXPORT std::ostream& operator<<(std::ostream& out, 41 BASE_EXPORT std::ostream& operator<<(std::ostream& out,
42 const NullableString16& value); 42 const NullableString16& value);
43 43
44 } // namespace 44 } // namespace base
45 45
46 #endif // BASE_STRINGS_NULLABLE_STRING16_H_ 46 #endif // BASE_STRINGS_NULLABLE_STRING16_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698