| Index: content/browser/tracing/tracing_ui.cc
|
| diff --git a/content/browser/tracing/tracing_ui.cc b/content/browser/tracing/tracing_ui.cc
|
| index aa2e529911ee37768e8ba3c2ad8ec8bec9e24c79..40bbee3c15c7eb28b6f12cb6584105aab79464d1 100644
|
| --- a/content/browser/tracing/tracing_ui.cc
|
| +++ b/content/browser/tracing/tracing_ui.cc
|
| @@ -317,8 +317,11 @@ void TracingMessageHandler::OnLoadTraceFile(const base::ListValue* list) {
|
| ui::SelectFileDialog::SELECT_OPEN_FILE,
|
| string16(),
|
| base::FilePath(),
|
| - NULL, 0, FILE_PATH_LITERAL(""),
|
| - web_ui()->GetWebContents()->GetView()->GetTopLevelNativeWindow(), NULL);
|
| + NULL,
|
| + 0,
|
| + base::FilePath::StringType(),
|
| + web_ui()->GetWebContents()->GetView()->GetTopLevelNativeWindow(),
|
| + NULL);
|
| }
|
|
|
| void TracingMessageHandler::LoadTraceFileComplete(string16* contents) {
|
| @@ -367,8 +370,11 @@ void TracingMessageHandler::OnSaveTraceFile(const base::ListValue* list) {
|
| ui::SelectFileDialog::SELECT_SAVEAS_FILE,
|
| string16(),
|
| base::FilePath(),
|
| - NULL, 0, FILE_PATH_LITERAL(""),
|
| - web_ui()->GetWebContents()->GetView()->GetTopLevelNativeWindow(), NULL);
|
| + NULL,
|
| + 0,
|
| + base::FilePath::StringType(),
|
| + web_ui()->GetWebContents()->GetView()->GetTopLevelNativeWindow(),
|
| + NULL);
|
| }
|
|
|
| void TracingMessageHandler::SaveTraceFileComplete() {
|
|
|