| OLD | NEW |
| 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 EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELEGATE_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELEGATE_H_ |
| 6 #define EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELEGATE_H_ | 6 #define EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/scoped_vector.h" | |
| 15 #include "base/values.h" | 14 #include "base/values.h" |
| 16 #include "components/keyed_service/core/keyed_service.h" | 15 #include "components/keyed_service/core/keyed_service.h" |
| 17 #include "extensions/common/api/networking_private.h" | 16 #include "extensions/common/api/networking_private.h" |
| 18 | 17 |
| 19 namespace extensions { | 18 namespace extensions { |
| 20 | 19 |
| 21 class NetworkingPrivateDelegateObserver; | 20 class NetworkingPrivateDelegateObserver; |
| 22 | 21 |
| 23 namespace api { | 22 namespace api { |
| 24 namespace networking_private { | 23 namespace networking_private { |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 | 220 |
| 222 // Interface for UI methods. May be null. | 221 // Interface for UI methods. May be null. |
| 223 std::unique_ptr<UIDelegate> ui_delegate_; | 222 std::unique_ptr<UIDelegate> ui_delegate_; |
| 224 | 223 |
| 225 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateDelegate); | 224 DISALLOW_COPY_AND_ASSIGN(NetworkingPrivateDelegate); |
| 226 }; | 225 }; |
| 227 | 226 |
| 228 } // namespace extensions | 227 } // namespace extensions |
| 229 | 228 |
| 230 #endif // EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELEGATE
_H_ | 229 #endif // EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELEGATE
_H_ |
| OLD | NEW |