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

Side by Side Diff: chrome/test/base/layout_test_http_server.h

Issue 7474025: Move more files from chrome/test to chrome/test/base, part #2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/base/bookmark_load_observer.cc ('k') | chrome/test/base/layout_test_http_server.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_TEST_LAYOUT_TEST_HTTP_SERVER_H_ 5 #ifndef CHROME_TEST_BASE_LAYOUT_TEST_HTTP_SERVER_H_
6 #define CHROME_TEST_LAYOUT_TEST_HTTP_SERVER_H_ 6 #define CHROME_TEST_BASE_LAYOUT_TEST_HTTP_SERVER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
11 11
12 // This object bounds the lifetime of an external HTTP server 12 // This object bounds the lifetime of an external HTTP server
13 // used for layout tests. 13 // used for layout tests.
14 // 14 //
15 // NOTE: If you're not running a layout test, you probably want 15 // NOTE: If you're not running a layout test, you probably want
16 // a more lightweight net/test/test_server HTTP server. 16 // a more lightweight net/test/test_server HTTP server.
(...skipping 16 matching lines...) Expand all
33 private: 33 private:
34 FilePath root_directory_; // Root directory of the server. 34 FilePath root_directory_; // Root directory of the server.
35 35
36 int port_; // Port on which the server should listen. 36 int port_; // Port on which the server should listen.
37 37
38 bool running_; // True if the server is currently running. 38 bool running_; // True if the server is currently running.
39 39
40 DISALLOW_COPY_AND_ASSIGN(LayoutTestHttpServer); 40 DISALLOW_COPY_AND_ASSIGN(LayoutTestHttpServer);
41 }; 41 };
42 42
43 #endif // CHROME_TEST_LAYOUT_TEST_HTTP_SERVER_H_ 43 #endif // CHROME_TEST_BASE_LAYOUT_TEST_HTTP_SERVER_H_
OLDNEW
« no previous file with comments | « chrome/test/base/bookmark_load_observer.cc ('k') | chrome/test/base/layout_test_http_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698