| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_COMMON_EXTENSIONS_PERMISSIONS_SOCKET_PERMISSION_H_ | 5 #ifndef EXTENSIONS_COMMON_PERMISSIONS_SOCKET_PERMISSION_H_ | 
| 6 #define CHROME_COMMON_EXTENSIONS_PERMISSIONS_SOCKET_PERMISSION_H_ | 6 #define EXTENSIONS_COMMON_PERMISSIONS_SOCKET_PERMISSION_H_ | 
| 7 | 7 | 
| 8 #include <string> | 8 #include <string> | 
| 9 | 9 | 
| 10 #include "chrome/common/extensions/permissions/set_disjunction_permission.h" |  | 
| 11 #include "chrome/common/extensions/permissions/socket_permission_data.h" |  | 
| 12 #include "extensions/common/permissions/api_permission.h" | 10 #include "extensions/common/permissions/api_permission.h" | 
|  | 11 #include "extensions/common/permissions/set_disjunction_permission.h" | 
|  | 12 #include "extensions/common/permissions/socket_permission_data.h" | 
| 13 | 13 | 
| 14 namespace extensions { | 14 namespace extensions { | 
| 15 | 15 | 
| 16 class SocketPermission : public SetDisjunctionPermission<SocketPermissionData, | 16 class SocketPermission | 
| 17                                                          SocketPermission> { | 17     : public SetDisjunctionPermission<SocketPermissionData, SocketPermission> { | 
| 18  public: | 18  public: | 
| 19   struct CheckParam : APIPermission::CheckParam { | 19   struct CheckParam : APIPermission::CheckParam { | 
| 20     CheckParam(content::SocketPermissionRequest::OperationType type, | 20     CheckParam(content::SocketPermissionRequest::OperationType type, | 
| 21         const std::string& host, | 21                const std::string& host, | 
| 22         int port) | 22                int port) | 
| 23       : request(type, host, port) { } | 23         : request(type, host, port) {} | 
| 24     content::SocketPermissionRequest request; | 24     content::SocketPermissionRequest request; | 
| 25   }; | 25   }; | 
| 26 | 26 | 
| 27   explicit SocketPermission(const APIPermissionInfo* info); | 27   explicit SocketPermission(const APIPermissionInfo* info); | 
| 28 | 28 | 
| 29   virtual ~SocketPermission(); | 29   virtual ~SocketPermission(); | 
| 30 | 30 | 
| 31   // Returns the localized permission messages of this permission. | 31   // Returns the localized permission messages of this permission. | 
| 32   virtual PermissionMessages GetMessages() const OVERRIDE; | 32   virtual PermissionMessages GetMessages() const OVERRIDE; | 
| 33 | 33 | 
| 34  private: | 34  private: | 
| 35   bool AddAnyHostMessage(PermissionMessages& messages) const; | 35   bool AddAnyHostMessage(PermissionMessages& messages) const; | 
| 36   void AddSubdomainHostMessage(PermissionMessages& messages) const; | 36   void AddSubdomainHostMessage(PermissionMessages& messages) const; | 
| 37   void AddSpecificHostMessage(PermissionMessages& messages) const; | 37   void AddSpecificHostMessage(PermissionMessages& messages) const; | 
| 38   void AddNetworkListMessage(PermissionMessages& messages) const; | 38   void AddNetworkListMessage(PermissionMessages& messages) const; | 
| 39 }; | 39 }; | 
| 40 | 40 | 
| 41 }  // namespace extensions | 41 }  // namespace extensions | 
| 42 | 42 | 
| 43 #endif  // CHROME_COMMON_EXTENSIONS_PERMISSIONS_SOCKET_PERMISSION_H_ | 43 #endif  // EXTENSIONS_COMMON_PERMISSIONS_SOCKET_PERMISSION_H_ | 
| OLD | NEW | 
|---|