Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: content/browser/service_worker/service_worker_storage.h

Issue 208843004: Add the beginning of a public Service Worker API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix kinuko's comments. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_STORAGE_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_STORAGE_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_STORAGE_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_STORAGE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/gtest_prod_util.h" 13 #include "base/gtest_prod_util.h"
14 #include "base/memory/scoped_vector.h" 14 #include "base/memory/scoped_vector.h"
15 #include "content/common/content_export.h" 15 #include "content/common/content_export.h"
16 #include "content/common/service_worker/service_worker_status_code.h" 16 #include "content/public/common/service_worker_status_code.h"
17 #include "url/gurl.h" 17 #include "url/gurl.h"
18 18
19 namespace quota { 19 namespace quota {
20 class QuotaManagerProxy; 20 class QuotaManagerProxy;
21 } 21 }
22 22
23 namespace content { 23 namespace content {
24 24
25 class ServiceWorkerRegistration; 25 class ServiceWorkerRegistration;
26 class ServiceWorkerRegistrationInfo; 26 class ServiceWorkerRegistrationInfo;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_; 89 scoped_refptr<quota::QuotaManagerProxy> quota_manager_proxy_;
90 base::FilePath path_; 90 base::FilePath path_;
91 91
92 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerStorage); 92 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerStorage);
93 }; 93 };
94 94
95 } // namespace content 95 } // namespace content
96 96
97 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_STORAGE_H_ 97 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_STORAGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698