| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_RENDERER_HOST_PEPPER_PEPPER_ISOLATED_FILE_SYSTEM_MESSAGE_
FILTER_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_ISOLATED_FILE_SYSTEM_MESSAGE_
FILTER_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_ISOLATED_FILE_SYSTEM_MESSAGE_
FILTER_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_ISOLATED_FILE_SYSTEM_MESSAGE_
FILTER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <set> | 10 #include <set> |
| 9 #include <string> | 11 #include <string> |
| 10 | 12 |
| 11 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/macros.h" |
| 12 #include "ppapi/c/pp_instance.h" | 15 #include "ppapi/c/pp_instance.h" |
| 13 #include "ppapi/c/pp_resource.h" | 16 #include "ppapi/c/pp_resource.h" |
| 14 #include "ppapi/c/private/ppb_isolated_file_system_private.h" | 17 #include "ppapi/c/private/ppb_isolated_file_system_private.h" |
| 15 #include "ppapi/host/resource_host.h" | 18 #include "ppapi/host/resource_host.h" |
| 16 #include "ppapi/host/resource_message_filter.h" | 19 #include "ppapi/host/resource_message_filter.h" |
| 17 #include "url/gurl.h" | 20 #include "url/gurl.h" |
| 18 | 21 |
| 19 class Profile; | 22 class Profile; |
| 20 | 23 |
| 21 namespace content { | 24 namespace content { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 | 77 |
| 75 // Set of origins that can use CrxFs private APIs from NaCl. | 78 // Set of origins that can use CrxFs private APIs from NaCl. |
| 76 std::set<std::string> allowed_crxfs_origins_; | 79 std::set<std::string> allowed_crxfs_origins_; |
| 77 | 80 |
| 78 DISALLOW_COPY_AND_ASSIGN(PepperIsolatedFileSystemMessageFilter); | 81 DISALLOW_COPY_AND_ASSIGN(PepperIsolatedFileSystemMessageFilter); |
| 79 }; | 82 }; |
| 80 | 83 |
| 81 } // namespace chrome | 84 } // namespace chrome |
| 82 | 85 |
| 83 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_ISOLATED_FILE_SYSTEM_MESSA
GE_FILTER_H_ | 86 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_ISOLATED_FILE_SYSTEM_MESSA
GE_FILTER_H_ |
| OLD | NEW |