| Index: chrome/common/extensions/permissions/socket_permission_entry.cc
|
| diff --git a/chrome/common/extensions/permissions/socket_permission_entry.cc b/chrome/common/extensions/permissions/socket_permission_entry.cc
|
| index 9d9eeeab0a16209fb3457656eadee2fe883f8380..be426ead0796d4376eb136ff32c36a7244180527 100644
|
| --- a/chrome/common/extensions/permissions/socket_permission_entry.cc
|
| +++ b/chrome/common/extensions/permissions/socket_permission_entry.cc
|
| @@ -28,9 +28,9 @@ const int kWildcardPortNumber = 0;
|
| const int kInvalidPort = -1;
|
|
|
| bool StartsOrEndsWithWhitespace(const std::string& str) {
|
| - if (str.find_first_not_of(kWhitespaceASCII) != 0)
|
| + if (str.find_first_not_of(base::kWhitespaceASCII) != 0)
|
| return true;
|
| - if (str.find_last_not_of(kWhitespaceASCII) != str.length() - 1)
|
| + if (str.find_last_not_of(base::kWhitespaceASCII) != str.length() - 1)
|
| return true;
|
| return false;
|
| }
|
|
|