Index: mojo/examples/apptest/example_apptest.cc |
diff --git a/mojo/examples/apptest/example_apptest.cc b/mojo/examples/apptest/example_apptest.cc |
index c754c85e3b7b56dc959a8a357fe54dc7531593e7..7288608edb3692bad0325e6beaf1a8bf5689fdab 100644 |
--- a/mojo/examples/apptest/example_apptest.cc |
+++ b/mojo/examples/apptest/example_apptest.cc |
@@ -97,7 +97,7 @@ MojoResult MojoMain(MojoHandle shell_handle) { |
{ |
// InitGoogleTest expects (argc + 1) elements, including a terminating NULL. |
// It also removes GTEST arguments from |argv| and updates the |argc| count. |
- const mojo::Array<mojo::String>& args = app.args(); |
+ const std::vector<std::string>& args = app.args(); |
MOJO_CHECK(args.size() < INT_MAX); |
int argc = static_cast<int>(args.size()); |
std::vector<char*> argv(argc + 1); |