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

Side by Side Diff: chrome/browser/extensions/api/networking_private/networking_private_verify_delegate_factory_impl.h

Issue 1871713002: Convert //chrome/browser/extensions from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and fix header Created 4 years, 8 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 #ifndef CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_VERI FY_DELEGATE_FACTORY_IMPL_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_VERI FY_DELEGATE_FACTORY_IMPL_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_VERI FY_DELEGATE_FACTORY_IMPL_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_VERI FY_DELEGATE_FACTORY_IMPL_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "extensions/browser/api/networking_private/networking_private_delegate_ factory.h" 9 #include "extensions/browser/api/networking_private/networking_private_delegate_ factory.h"
10 10
11 namespace extensions { 11 namespace extensions {
12 12
13 class NetworkingPrivateVerifyDelegateFactoryImpl 13 class NetworkingPrivateVerifyDelegateFactoryImpl
14 : public NetworkingPrivateDelegateFactory::VerifyDelegateFactory { 14 : public NetworkingPrivateDelegateFactory::VerifyDelegateFactory {
15 public: 15 public:
16 NetworkingPrivateVerifyDelegateFactoryImpl(); 16 NetworkingPrivateVerifyDelegateFactoryImpl();
17 ~NetworkingPrivateVerifyDelegateFactoryImpl() override; 17 ~NetworkingPrivateVerifyDelegateFactoryImpl() override;
18 18
19 scoped_ptr<NetworkingPrivateDelegate::VerifyDelegate> CreateDelegate() 19 std::unique_ptr<NetworkingPrivateDelegate::VerifyDelegate> CreateDelegate()
20 override; 20 override;
21 21
22 private: 22 private:
23 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateVerifyDelegateFactoryImpl); 23 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateVerifyDelegateFactoryImpl);
24 }; 24 };
25 25
26 } // namespace extensions 26 } // namespace extensions
27 27
28 #endif // CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_V ERIFY_DELEGATE_FACTORY_IMPL_H_ 28 #endif // CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_V ERIFY_DELEGATE_FACTORY_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698