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 CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELE
GATE_OBSERVER_H_ | 5 #ifndef EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELEGATE_OB
SERVER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELE
GATE_OBSERVER_H_ | 6 #define EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELEGATE_OB
SERVER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 | 12 |
13 namespace extensions { | 13 namespace extensions { |
14 | 14 |
15 // Implemented by event handlers so they are notified when a change event | 15 // Implemented by event handlers so they are notified when a change event |
16 // occurs. Triggered by NetworkingPrivateServiceClient or | 16 // occurs. Triggered by NetworkingPrivateServiceClient or |
(...skipping 12 matching lines...) Expand all Loading... |
29 | 29 |
30 protected: | 30 protected: |
31 virtual ~NetworkingPrivateDelegateObserver() {} | 31 virtual ~NetworkingPrivateDelegateObserver() {} |
32 | 32 |
33 private: | 33 private: |
34 DISALLOW_ASSIGN(NetworkingPrivateDelegateObserver); | 34 DISALLOW_ASSIGN(NetworkingPrivateDelegateObserver); |
35 }; | 35 }; |
36 | 36 |
37 } // namespace extensions | 37 } // namespace extensions |
38 | 38 |
39 #endif // CHROME_BROWSER_EXTENSIONS_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_D
ELEGATE_OBSERVER_H_ | 39 #endif // EXTENSIONS_BROWSER_API_NETWORKING_PRIVATE_NETWORKING_PRIVATE_DELEGATE
_OBSERVER_H_ |
OLD | NEW |