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

Side by Side Diff: blimp/engine/testing/app/blimp_url_rewriter.h

Issue 2572563006: [Blimp] Refactor Blimp test engine with embedded test server and URL rewriting (Closed)
Patch Set: John comment Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698