| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 class FileSystemClient { | 44 class FileSystemClient { |
| 45 WTF_MAKE_NONCOPYABLE(FileSystemClient); | 45 WTF_MAKE_NONCOPYABLE(FileSystemClient); |
| 46 public: | 46 public: |
| 47 FileSystemClient() { } | 47 FileSystemClient() { } |
| 48 virtual ~FileSystemClient() { } | 48 virtual ~FileSystemClient() { } |
| 49 | 49 |
| 50 virtual bool allowFileSystem(ExecutionContext*) = 0; | 50 virtual bool allowFileSystem(ExecutionContext*) = 0; |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 void provideLocalFileSystemTo(Page*, PassOwnPtr<FileSystemClient>); | 53 void provideLocalFileSystemTo(Page&, PassOwnPtr<FileSystemClient>); |
| 54 | 54 |
| 55 void provideLocalFileSystemToWorker(WorkerClients*, PassOwnPtr<FileSystemClient>
); | 55 void provideLocalFileSystemToWorker(WorkerClients*, PassOwnPtr<FileSystemClient>
); |
| 56 | 56 |
| 57 } // namespace WebCore | 57 } // namespace WebCore |
| 58 | 58 |
| 59 #endif // FileSystemClient_h | 59 #endif // FileSystemClient_h |
| OLD | NEW |