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

Side by Side Diff: chrome/installer/util/advanced_firewall_manager_win.cc

Issue 1548153002: Switch to standard integer types in chrome/. (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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/installer/util/advanced_firewall_manager_win.h" 5 #include "chrome/installer/util/advanced_firewall_manager_win.h"
6 6
7 #include <stddef.h>
8
7 #include "base/guid.h" 9 #include "base/guid.h"
8 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/macros.h"
9 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
10 #include "base/strings/utf_string_conversions.h" 13 #include "base/strings/utf_string_conversions.h"
11 #include "base/win/scoped_bstr.h" 14 #include "base/win/scoped_bstr.h"
12 #include "base/win/scoped_variant.h" 15 #include "base/win/scoped_variant.h"
13 16
14 namespace installer { 17 namespace installer {
15 18
16 AdvancedFirewallManager::AdvancedFirewallManager() {} 19 AdvancedFirewallManager::AdvancedFirewallManager() {}
17 20
18 AdvancedFirewallManager::~AdvancedFirewallManager() {} 21 AdvancedFirewallManager::~AdvancedFirewallManager() {}
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 !base::FilePath::CompareEqualIgnoreCase(static_cast<BSTR>(path), 193 !base::FilePath::CompareEqualIgnoreCase(static_cast<BSTR>(path),
191 app_path_.value())) { 194 app_path_.value())) {
192 continue; 195 continue;
193 } 196 }
194 197
195 rules->push_back(rule); 198 rules->push_back(rule);
196 } 199 }
197 } 200 }
198 201
199 } // namespace installer 202 } // namespace installer
OLDNEW
« no previous file with comments | « chrome/installer/util/advanced_firewall_manager_win.h ('k') | chrome/installer/util/advanced_firewall_manager_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698