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

Unified Diff: webkit/glue/multipart_response_delegate.cc

Issue 3056029: Move the number conversions from string_util to a new file.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 | « webkit/glue/dom_operations.cc ('k') | webkit/glue/plugins/pepper_var.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/multipart_response_delegate.cc
===================================================================
--- webkit/glue/multipart_response_delegate.cc (revision 54340)
+++ webkit/glue/multipart_response_delegate.cc (working copy)
@@ -5,6 +5,7 @@
#include "webkit/glue/multipart_response_delegate.h"
#include "base/logging.h"
+#include "base/string_number_conversions.h"
#include "base/string_util.h"
#include "net/base/net_util.h"
#include "net/http/http_util.h"
@@ -363,9 +364,9 @@
content_range.substr(byte_range_upper_bound_start_offset,
byte_range_upper_bound_characters);
- if (!StringToInt(byte_range_lower_bound, content_range_lower_bound))
+ if (!base::StringToInt(byte_range_lower_bound, content_range_lower_bound))
return false;
- if (!StringToInt(byte_range_upper_bound, content_range_upper_bound))
+ if (!base::StringToInt(byte_range_upper_bound, content_range_upper_bound))
return false;
return true;
}
« no previous file with comments | « webkit/glue/dom_operations.cc ('k') | webkit/glue/plugins/pepper_var.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698