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

Side by Side Diff: content/browser/service_worker/service_worker_context.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 #include guard name 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_H_
7
8 #include "base/basictypes.h"
9
10 namespace content {
11
12 // Represents the per-BrowserContext ServiceWorker data.
13 class ServiceWorkerContext {
14 public:
15 // TODO(michaeln): This class is a place holder for content/public api
16 // which will come later. Promote this class when we get there.
17
18 protected:
19 ServiceWorkerContext() {}
20 virtual ~ServiceWorkerContext() {}
21
22 private:
23 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContext);
24 };
25
26 } // namespace content
27
28 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698