| Index: chrome/installer/util/firewall_manager_win.h
|
| diff --git a/chrome/installer/util/firewall_manager_win.h b/chrome/installer/util/firewall_manager_win.h
|
| index 9411961317b2fabf531346b4405ff4e9f63964b5..9fe837f29279335a730d46a43c01cbbe70cd61f0 100644
|
| --- a/chrome/installer/util/firewall_manager_win.h
|
| +++ b/chrome/installer/util/firewall_manager_win.h
|
| @@ -5,8 +5,9 @@
|
| #ifndef CHROME_INSTALLER_UTIL_FIREWALL_MANAGER_WIN_H_
|
| #define CHROME_INSTALLER_UTIL_FIREWALL_MANAGER_WIN_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
|
|
| class BrowserDistribution;
|
|
|
| @@ -23,8 +24,9 @@ class FirewallManager {
|
|
|
| // Creates instance of |FirewallManager|. Implementation chooses best version
|
| // available for current version of Windows.
|
| - static scoped_ptr<FirewallManager> Create(BrowserDistribution* dist,
|
| - const base::FilePath& chrome_path);
|
| + static std::unique_ptr<FirewallManager> Create(
|
| + BrowserDistribution* dist,
|
| + const base::FilePath& chrome_path);
|
|
|
| // Returns true if application can one ports for incoming connections without
|
| // triggering firewall alert. It still does not guarantee that traffic
|
|
|