| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // Defines the Chrome Extensions Proxy Settings API relevant classes to realize | 5 // Defines the Chrome Extensions Proxy Settings API relevant classes to realize |
| 6 // the API as specified in chrome/common/extensions/api/extension_api.json. | 6 // the API as specified in the extension API JSON. |
| 7 | 7 |
| 8 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PROXY_API_H_ | 8 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PROXY_API_H_ |
| 9 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROXY_API_H_ | 9 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROXY_API_H_ |
| 10 | 10 |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/memory/singleton.h" | 13 #include "base/memory/singleton.h" |
| 14 #include "base/string16.h" | 14 #include "base/string16.h" |
| 15 #include "chrome/browser/extensions/extension_preference_api.h" | 15 #include "chrome/browser/extensions/extension_preference_api.h" |
| 16 #include "chrome/browser/prefs/proxy_prefs.h" | 16 #include "chrome/browser/prefs/proxy_prefs.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 private: | 59 private: |
| 60 friend struct DefaultSingletonTraits<ExtensionProxyEventRouter>; | 60 friend struct DefaultSingletonTraits<ExtensionProxyEventRouter>; |
| 61 | 61 |
| 62 ExtensionProxyEventRouter(); | 62 ExtensionProxyEventRouter(); |
| 63 ~ExtensionProxyEventRouter(); | 63 ~ExtensionProxyEventRouter(); |
| 64 | 64 |
| 65 DISALLOW_COPY_AND_ASSIGN(ExtensionProxyEventRouter); | 65 DISALLOW_COPY_AND_ASSIGN(ExtensionProxyEventRouter); |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROXY_API_H_ | 68 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROXY_API_H_ |
| OLD | NEW |