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

Unified Diff: test/cctest/test-debug.cc

Issue 56004: Fixed lint errors in test-debug. Sorry for that. (Closed)
Patch Set: Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-debug.cc
diff --git a/test/cctest/test-debug.cc b/test/cctest/test-debug.cc
index f21a878aa1d6940cf5951dd419aac7db348bde13..81b514435713fa49b5e8cead44efb919ecca8936 100644
--- a/test/cctest/test-debug.cc
+++ b/test/cctest/test-debug.cc
@@ -3988,11 +3988,11 @@ TEST(DebuggerAgentProtocolOverflowHeader) {
class EmptyExternalStringResource : public v8::String::ExternalStringResource {
public:
EmptyExternalStringResource() { empty_[0] = 0; }
- virtual ~EmptyExternalStringResource() {};
+ virtual ~EmptyExternalStringResource() {}
virtual size_t length() const { return empty_.length(); }
virtual const uint16_t* data() const { return empty_.start(); }
private:
- ::v8::internal::EmbeddedVector<uint16_t,1> empty_;
+ ::v8::internal::EmbeddedVector<uint16_t, 1> empty_;
};
@@ -4014,8 +4014,7 @@ TEST(DebugGetLoadedScripts) {
"var scripts = %DebugGetLoadedScripts();"
"for (var i = 0; i < scripts.length; ++i) {"
" scripts[i].line_ends;"
- "}"
- );
+ "}");
// Must not crash while accessing line_ends.
i::FLAG_allow_natives_syntax = allow_natives_syntax;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698