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: ServiceWorkerContext()19 ServiceWorkerContext() {} ~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_ 29