diff options
author | Kristian Monsen <kristianm@google.com> | 2010-11-05 10:45:07 +0000 |
---|---|---|
committer | Kristian Monsen <kristianm@google.com> | 2010-11-05 10:49:54 +0000 |
commit | 18b98c9f527349208c3518828e590cf9652d57bd (patch) | |
tree | 858c2839adafaab59dbb125350c945609d6480e4 /WebKit/android/WebCoreSupport/WebRequest.cpp | |
parent | 07017de2da3288f802d8424d61aff826a72f736d (diff) | |
download | external_webkit-18b98c9f527349208c3518828e590cf9652d57bd.zip external_webkit-18b98c9f527349208c3518828e590cf9652d57bd.tar.gz external_webkit-18b98c9f527349208c3518828e590cf9652d57bd.tar.bz2 |
Update method to take const std::string& argument
It's safe to pass this across threads since NewRunnableMethod
copies the argument.
Change-Id: I620ebfe64ead7947ac3a6733507865938e04a8df
Diffstat (limited to 'WebKit/android/WebCoreSupport/WebRequest.cpp')
-rw-r--r-- | WebKit/android/WebCoreSupport/WebRequest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/WebCoreSupport/WebRequest.cpp b/WebKit/android/WebCoreSupport/WebRequest.cpp index f21c1a2..e939be4 100644 --- a/WebKit/android/WebCoreSupport/WebRequest.cpp +++ b/WebKit/android/WebCoreSupport/WebRequest.cpp @@ -130,7 +130,7 @@ void WebRequest::finish(bool success) m_urlLoader = 0; } -void WebRequest::appendFileToUpload(std::string filename) +void WebRequest::appendFileToUpload(const std::string& filename) { // AppendFileToUpload is only valid before calling start ASSERT(m_loadState == Created, "appendFileToUpload called on a WebRequest not in CREATED state: (%s)", m_url.c_str()); |