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

Side by Side Diff: third_party/WebKit/Source/platform/network/EncodedFormDataTest.cpp

Issue 2389973004: reflow comments in platform/{network,peerconnection} (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/network/FormDataEncoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "platform/network/EncodedFormData.h" 5 #include "platform/network/EncodedFormData.h"
6 6
7 #include "testing/gtest/include/gtest/gtest.h" 7 #include "testing/gtest/include/gtest/gtest.h"
8 8
9 namespace blink { 9 namespace blink {
10 10
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 101
102 if (copyElements[i].m_fileSystemURL.getString().impl()) { 102 if (copyElements[i].m_fileSystemURL.getString().impl()) {
103 EXPECT_NE(originalElements[i].m_fileSystemURL.getString().impl(), 103 EXPECT_NE(originalElements[i].m_fileSystemURL.getString().impl(),
104 copyElements[i].m_fileSystemURL.getString().impl()); 104 copyElements[i].m_fileSystemURL.getString().impl());
105 EXPECT_TRUE( 105 EXPECT_TRUE(
106 copyElements[i].m_fileSystemURL.getString().impl()->hasOneRef()); 106 copyElements[i].m_fileSystemURL.getString().impl()->hasOneRef());
107 } 107 }
108 108
109 EXPECT_EQ(nullptr, copyElements[i].m_fileSystemURL.innerURL()); 109 EXPECT_EQ(nullptr, copyElements[i].m_fileSystemURL.innerURL());
110 110
111 // m_optionalBlobDataHandle is not checked, because BlobDataHandle is Thread SafeRefCounted. 111 // m_optionalBlobDataHandle is not checked, because BlobDataHandle is
112 // ThreadSafeRefCounted.
112 } 113 }
113 } 114 }
114 115
115 } // namespace 116 } // namespace
116 117
117 } // namespace blink 118 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/network/FormDataEncoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698