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

Unified Diff: content/test/layout_test_http_server.h

Issue 12208057: Add explicit base to FilePath. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/layout_browsertest.cc ('k') | content/test/layout_test_http_server.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/layout_test_http_server.h
diff --git a/content/test/layout_test_http_server.h b/content/test/layout_test_http_server.h
index 709c1eca7e89b5214a0ec00eca1f595b1db18a29..66035b653b56bd6ce98ca651b9e5df88c6ba0a9f 100644
--- a/content/test/layout_test_http_server.h
+++ b/content/test/layout_test_http_server.h
@@ -21,7 +21,7 @@ namespace content {
// a more lightweight net/test/test_server HTTP server.
class LayoutTestHttpServer {
public:
- LayoutTestHttpServer(const FilePath& root_directory, int port);
+ LayoutTestHttpServer(const base::FilePath& root_directory, int port);
~LayoutTestHttpServer();
// Starts the server. Returns true on success.
@@ -38,7 +38,7 @@ class LayoutTestHttpServer {
int port() const { return port_; }
private:
- FilePath root_directory_; // Root directory of the server.
+ base::FilePath root_directory_; // Root directory of the server.
int port_; // Port on which the server should listen.
« no previous file with comments | « content/test/layout_browsertest.cc ('k') | content/test/layout_test_http_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698