1 // Copyright 2013 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef MOJO_SHELL_RUN_H_ 6 #define MOJO_SHELL_RUN_H_ 7 8 #include <vector> 9 10 #include "url/gurl.h" 11 12 namespace mojo { 13 namespace shell { 14 15 class Context; 16 17 void Run(Context* context, const std::vector<GURL>& app_urls); 18 19 } // namespace shell 20 } // namespace mojo 21 22 #endif // MOJO_SHELL_RUN_H_ 23