diff options
author | dominicc <dominicc@chromium.org> | 2015-11-17 01:20:30 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-17 09:21:27 +0000 |
commit | df022c0a2cdcfb98b5acadd982ade450d86b6864 (patch) | |
tree | fc9aa794806b38a01041dd020c1aa4da4fac2ec1 /third_party/WebKit/Source/wtf/text/AtomicString.h | |
parent | f0c74ba417388d1e120713b12022299e3a0ca84e (diff) | |
download | chromium_src-df022c0a2cdcfb98b5acadd982ade450d86b6864.zip chromium_src-df022c0a2cdcfb98b5acadd982ade450d86b6864.tar.gz chromium_src-df022c0a2cdcfb98b5acadd982ade450d86b6864.tar.bz2 |
Setting link.sizes.value should be reflected in the sizes attribute.
BUG=545518
Committed: https://crrev.com/f3fec1337a6ae3433a378e2742d3d6e968970257
Cr-Commit-Position: refs/heads/master@{#360008}
Review URL: https://codereview.chromium.org/1435223002
Cr-Commit-Position: refs/heads/master@{#360040}
Diffstat (limited to 'third_party/WebKit/Source/wtf/text/AtomicString.h')
-rw-r--r-- | third_party/WebKit/Source/wtf/text/AtomicString.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/WebKit/Source/wtf/text/AtomicString.h b/third_party/WebKit/Source/wtf/text/AtomicString.h index 3a7c995..0a83aa7 100644 --- a/third_party/WebKit/Source/wtf/text/AtomicString.h +++ b/third_party/WebKit/Source/wtf/text/AtomicString.h @@ -23,8 +23,10 @@ #include "wtf/HashTableDeletedValueType.h" #include "wtf/WTFExport.h" +#include "wtf/testing/WTFUnitTestHelpersExport.h" #include "wtf/text/CString.h" #include "wtf/text/WTFString.h" +#include <iosfwd> namespace WTF { @@ -241,6 +243,9 @@ template<> struct DefaultHash<AtomicString> { typedef AtomicStringHash Hash; }; +// Pretty printer for gtest. +WTF_UNITTEST_HELPERS_EXPORT std::ostream& operator<<(std::ostream&, const AtomicString&); + } // namespace WTF WTF_ALLOW_MOVE_INIT_AND_COMPARE_WITH_MEM_FUNCTIONS(AtomicString); |