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

Side by Side Diff: third_party/WebKit/Source/core/inspector/v8/SourceMapTest.cpp

Issue 1627713002: Add more missing closing namespace comments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, address comment (also filed llvm.org/PR26290) Created 4 years, 10 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "core/inspector/v8/SourceMap.h" 5 #include "core/inspector/v8/SourceMap.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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 ASSERT_FALSE(!entry); 173 ASSERT_FALSE(!entry);
174 EXPECT_TRUE(isEqualEntry(entry, adoptPtr(new SourceMap::Entry(102, 24, "foo. js", 2, 19)))); 174 EXPECT_TRUE(isEqualEntry(entry, adoptPtr(new SourceMap::Entry(102, 24, "foo. js", 2, 19))));
175 175
176 entry = sourceMap->findEntry(102, 15); 176 entry = sourceMap->findEntry(102, 15);
177 ASSERT_FALSE(!entry); 177 ASSERT_FALSE(!entry);
178 EXPECT_TRUE(isEqualEntry(entry, adoptPtr(new SourceMap::Entry(102, 15, "foo. js", 2, 10)))); 178 EXPECT_TRUE(isEqualEntry(entry, adoptPtr(new SourceMap::Entry(102, 15, "foo. js", 2, 10))));
179 179
180 ASSERT_TRUE(!sourceMap->findEntry(0, 0)); 180 ASSERT_TRUE(!sourceMap->findEntry(0, 0));
181 } 181 }
182 182
183 } // blink 183 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698