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

Unified Diff: webkit/tools/test_shell/simple_appcache_system.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/tools/test_shell/run_all_tests.cc ('k') | webkit/tools/test_shell/simple_appcache_system.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/simple_appcache_system.h
diff --git a/webkit/tools/test_shell/simple_appcache_system.h b/webkit/tools/test_shell/simple_appcache_system.h
index 2975268ae02e6dd64551fa1fa0ac31163e84e3ce..73719137b4a174cc820c3a832b24c8784c6d5589 100644
--- a/webkit/tools/test_shell/simple_appcache_system.h
+++ b/webkit/tools/test_shell/simple_appcache_system.h
@@ -38,7 +38,7 @@ class SimpleAppCacheSystem {
virtual ~SimpleAppCacheSystem();
// One-time main UI thread initialization.
- static void InitializeOnUIThread(const FilePath& cache_directory) {
+ static void InitializeOnUIThread(const base::FilePath& cache_directory) {
if (instance_)
instance_->InitOnUIThread(cache_directory);
}
@@ -85,7 +85,7 @@ class SimpleAppCacheSystem {
friend class SimpleFrontendProxy;
// Instance methods called by our static public methods
- void InitOnUIThread(const FilePath& cache_directory);
+ void InitOnUIThread(const base::FilePath& cache_directory);
void InitOnIOThread(net::URLRequestContext* request_context);
void CleanupIOThread();
WebKit::WebApplicationCacheHost* CreateCacheHostForWebKit(
@@ -109,7 +109,7 @@ class SimpleAppCacheSystem {
return ui_message_loop_ ? true : false;
}
- FilePath cache_directory_;
+ base::FilePath cache_directory_;
MessageLoop* io_message_loop_;
MessageLoop* ui_message_loop_;
scoped_refptr<SimpleBackendProxy> backend_proxy_;
« no previous file with comments | « webkit/tools/test_shell/run_all_tests.cc ('k') | webkit/tools/test_shell/simple_appcache_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698