| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 SERVICES_URL_RESPONSE_DISK_CACHE_URL_RESPONSE_DISK_CACHE_APP_H_ | 5 #ifndef SERVICES_URL_RESPONSE_DISK_CACHE_URL_RESPONSE_DISK_CACHE_APP_H_ |
| 6 #define SERVICES_URL_RESPONSE_DISK_CACHE_URL_RESPONSE_DISK_CACHE_APP_H_ | 6 #define SERVICES_URL_RESPONSE_DISK_CACHE_URL_RESPONSE_DISK_CACHE_APP_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/task_runner.h" | 10 #include "base/task_runner.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 explicit URLResponseDiskCacheApp(scoped_refptr<base::TaskRunner> task_runner, | 25 explicit URLResponseDiskCacheApp(scoped_refptr<base::TaskRunner> task_runner, |
| 26 URLResponseDiskCacheDelegate* delegate); | 26 URLResponseDiskCacheDelegate* delegate); |
| 27 ~URLResponseDiskCacheApp() override; | 27 ~URLResponseDiskCacheApp() override; |
| 28 | 28 |
| 29 private: | 29 private: |
| 30 // ApplicationDelegate: | 30 // ApplicationDelegate: |
| 31 void Initialize(ApplicationImpl* app) override; | 31 void Initialize(ApplicationImpl* app) override; |
| 32 bool ConfigureIncomingConnection(ApplicationConnection* connection) override; | 32 bool ConfigureIncomingConnection(ApplicationConnection* connection) override; |
| 33 | 33 |
| 34 // InterfaceFactory<URLResponseDiskCache>: | 34 // InterfaceFactory<URLResponseDiskCache>: |
| 35 void Create(ApplicationConnection* connection, | 35 void Create(const ConnectionContext& connection_context, |
| 36 InterfaceRequest<URLResponseDiskCache> request) override; | 36 InterfaceRequest<URLResponseDiskCache> request) override; |
| 37 | 37 |
| 38 scoped_refptr<base::TaskRunner> task_runner_; | 38 scoped_refptr<base::TaskRunner> task_runner_; |
| 39 scoped_refptr<URLResponseDiskCacheDB> db_; | 39 scoped_refptr<URLResponseDiskCacheDB> db_; |
| 40 URLResponseDiskCacheDelegate* delegate_; | 40 URLResponseDiskCacheDelegate* delegate_; |
| 41 | 41 |
| 42 DISALLOW_COPY_AND_ASSIGN(URLResponseDiskCacheApp); | 42 DISALLOW_COPY_AND_ASSIGN(URLResponseDiskCacheApp); |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace mojo | 45 } // namespace mojo |
| 46 | 46 |
| 47 #endif // SERVICES_URL_RESPONSE_DISK_CACHE_URL_RESPONSE_DISK_CACHE_APP_H_ | 47 #endif // SERVICES_URL_RESPONSE_DISK_CACHE_URL_RESPONSE_DISK_CACHE_APP_H_ |
| OLD | NEW |