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

Side by Side Diff: chrome/browser/net/firefox_proxy_settings.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/net/firefox_proxy_settings.h ('k') | chrome/browser/net/ftp_browsertest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/net/firefox_proxy_settings.h" 5 #include "chrome/browser/net/firefox_proxy_settings.h"
6 6
7 #include <stddef.h>
8
7 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
8 #include "base/files/file_util.h" 10 #include "base/files/file_util.h"
9 #include "base/strings/string_number_conversions.h" 11 #include "base/strings/string_number_conversions.h"
10 #include "base/strings/string_split.h" 12 #include "base/strings/string_split.h"
11 #include "base/strings/string_tokenizer.h" 13 #include "base/strings/string_tokenizer.h"
12 #include "base/strings/string_util.h" 14 #include "base/strings/string_util.h"
13 #include "base/values.h" 15 #include "base/values.h"
14 #include "chrome/common/importer/firefox_importer_utils.h" 16 #include "chrome/common/importer/firefox_importer_utils.h"
15 #include "net/proxy/proxy_config.h" 17 #include "net/proxy/proxy_config.h"
16 18
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 while (string_tok.GetNext()) { 299 while (string_tok.GetNext()) {
298 std::string token = string_tok.token(); 300 std::string token = string_tok.token();
299 base::TrimWhitespaceASCII(token, base::TRIM_ALL, &token); 301 base::TrimWhitespaceASCII(token, base::TRIM_ALL, &token);
300 if (!token.empty()) 302 if (!token.empty())
301 settings->proxy_bypass_list_.push_back(token); 303 settings->proxy_bypass_list_.push_back(token);
302 } 304 }
303 } 305 }
304 } 306 }
305 return true; 307 return true;
306 } 308 }
OLDNEW
« no previous file with comments | « chrome/browser/net/firefox_proxy_settings.h ('k') | chrome/browser/net/ftp_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698