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

Unified Diff: gin/test/file.cc

Issue 460583002: avoid >> ambiguity in gin test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix presubmit warning Created 6 years, 4 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: gin/test/file.cc
diff --git a/gin/test/file.cc b/gin/test/file.cc
index cfd0af24e4730ed029270fec4d67650c35f6e27d..87b7f4b100c92ebd476782c0656dc8afe6bd3edf 100644
--- a/gin/test/file.cc
+++ b/gin/test/file.cc
@@ -59,7 +59,8 @@ v8::Handle<v8::Value> GetFilesInDirectory(gin::Arguments* args) {
names.push_back(name.BaseName().AsUTF8Unsafe());
}
- return gin::Converter<std::vector<std::string>>::ToV8(args->isolate(), names);
+ return gin::Converter<std::vector<std::string> >::ToV8(args->isolate(),
+ names);
}
gin::WrapperInfo g_wrapper_info = { gin::kEmbedderNativeGin };
« 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