diff options
Diffstat (limited to 'webkit/tools/test_shell/simple_appcache_system.h')
-rw-r--r-- | webkit/tools/test_shell/simple_appcache_system.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/tools/test_shell/simple_appcache_system.h b/webkit/tools/test_shell/simple_appcache_system.h index 2975268a..7371913 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_; |