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

Side by Side Diff: Source/platform/network/FormDataTest.cpp

Issue 1184673003: Fix unit test style in Source/platform/, part 2. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
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 #ifndef FormDataTest_h
6 #define FormDataTest_h
7
8 #include "config.h" 5 #include "config.h"
9 #include "platform/network/FormData.h" 6 #include "platform/network/FormData.h"
10 7
11 #include <gtest/gtest.h> 8 #include <gtest/gtest.h>
12 9
13 namespace blink { 10 namespace blink {
14 11
15 namespace { 12 namespace {
16 13
17 class FormDataTest : public ::testing::Test { 14 class FormDataTest : public ::testing::Test {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 107
111 EXPECT_EQ(nullptr, copyElements[i].m_fileSystemURL.innerURL()); 108 EXPECT_EQ(nullptr, copyElements[i].m_fileSystemURL.innerURL());
112 109
113 // m_optionalBlobDataHandle is not checked, because BlobDataHandle is Th readSafeRefCounted. 110 // m_optionalBlobDataHandle is not checked, because BlobDataHandle is Th readSafeRefCounted.
114 } 111 }
115 } 112 }
116 113
117 } // namespace 114 } // namespace
118 115
119 } // namespace blink 116 } // namespace blink
120
121 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698