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

Unified Diff: content/browser/android/tracing_intent_handler.cc

Issue 12213066: Use base namespace for FilePath in content/browser (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/browser/android/tracing_intent_handler.h ('k') | content/browser/appcache/appcache_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/android/tracing_intent_handler.cc
diff --git a/content/browser/android/tracing_intent_handler.cc b/content/browser/android/tracing_intent_handler.cc
index 2b44a461f02ca4460e9bd7357e81e1a1d6cbb664..5935a7824ea592663de2575f0c538a20fd7f9d6f 100644
--- a/content/browser/android/tracing_intent_handler.cc
+++ b/content/browser/android/tracing_intent_handler.cc
@@ -14,7 +14,7 @@ namespace content {
TracingIntentHandler* g_trace_intent_handler = NULL;
-TracingIntentHandler::TracingIntentHandler(const FilePath& path)
+TracingIntentHandler::TracingIntentHandler(const base::FilePath& path)
: TraceSubscriberStdio(path) {
TraceController::GetInstance()->BeginTracing(this, std::string("-test*"));
}
@@ -37,7 +37,7 @@ static void BeginTracing(JNIEnv* env, jclass clazz, jstring jspath) {
std::string path(base::android::ConvertJavaStringToUTF8(env, jspath));
if (g_trace_intent_handler != NULL)
return;
- g_trace_intent_handler = new TracingIntentHandler(FilePath(path));
+ g_trace_intent_handler = new TracingIntentHandler(base::FilePath(path));
}
static void EndTracing(JNIEnv* env, jclass clazz) {
« no previous file with comments | « content/browser/android/tracing_intent_handler.h ('k') | content/browser/appcache/appcache_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698