Index: extensions/browser/api/web_request/upload_data_presenter.cc |
diff --git a/extensions/browser/api/web_request/upload_data_presenter.cc b/extensions/browser/api/web_request/upload_data_presenter.cc |
index ff63010bc56ca5ff1b84146be66855a7d82d54c1..dfe9eda0220d32d57d2760ffbe9c65b70e683a7b 100644 |
--- a/extensions/browser/api/web_request/upload_data_presenter.cc |
+++ b/extensions/browser/api/web_request/upload_data_presenter.cc |
@@ -19,7 +19,6 @@ |
using base::BinaryValue; |
using base::DictionaryValue; |
using base::ListValue; |
-using base::StringValue; |
using base::Value; |
namespace keys = extension_web_request_api_constants; |
@@ -98,7 +97,7 @@ void RawDataPresenter::FeedNextBytes(const char* bytes, size_t size) { |
void RawDataPresenter::FeedNextFile(const std::string& filename) { |
// Insert the file path instead of the contents, which may be too large. |
subtle::AppendKeyValuePair(keys::kRequestBodyRawFileKey, |
- base::MakeUnique<base::StringValue>(filename), |
+ base::MakeUnique<base::Value>(filename), |
list_.get()); |
} |