Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2016 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 BLIMP_ENGINE_TESTING_APP_BLIMP_URL_REWRITER_H_ | |
| 6 #define BLIMP_ENGINE_TESTING_APP_BLIMP_URL_REWRITER_H_ | |
| 7 | |
| 8 #include <string> | |
|
Kevin M
2017/01/09 20:17:18
Not used?
shenghuazhang
2017/01/10 23:20:50
Done.
| |
| 9 | |
| 10 #include "net/test/embedded_test_server/embedded_test_server.h" | |
| 11 | |
| 12 class GURL; | |
| 13 | |
| 14 namespace content { | |
| 15 class BrowserContext; | |
| 16 } | |
| 17 | |
| 18 namespace blimp { | |
| 19 namespace engine { | |
| 20 | |
| 21 namespace test { | |
| 22 | |
| 23 extern std::unique_ptr<net::EmbeddedTestServer> g_ets_instance; | |
| 24 | |
| 25 bool HandleBlimpTestURL(GURL* url, content::BrowserContext* browser_context); | |
|
Kevin M
2017/01/09 20:17:18
Add function comment.
shenghuazhang
2017/01/10 23:20:50
Done.
| |
| 26 } // namespace test | |
|
Kevin M
2017/01/09 20:17:18
nit: add whitespace before closing curly brace
shenghuazhang
2017/01/10 23:20:50
Done.
| |
| 27 | |
| 28 } // namespace engine | |
| 29 } // namespace blimp | |
| 30 #endif // BLIMP_ENGINE_TESTING_APP_BLIMP_URL_REWRITER_H_ | |
| OLD | NEW |