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

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

Issue 397933003: Service Workers: Clean up cpplint.py warnings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_REQUEST_HANDLER_H_ 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
10 #include "base/supports_user_data.h" 10 #include "base/supports_user_data.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 base::WeakPtr<ServiceWorkerContextCore> context, 68 base::WeakPtr<ServiceWorkerContextCore> context,
69 base::WeakPtr<ServiceWorkerProviderHost> provider_host, 69 base::WeakPtr<ServiceWorkerProviderHost> provider_host,
70 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context, 70 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context,
71 ResourceType::Type resource_type); 71 ResourceType::Type resource_type);
72 72
73 base::WeakPtr<ServiceWorkerContextCore> context_; 73 base::WeakPtr<ServiceWorkerContextCore> context_;
74 base::WeakPtr<ServiceWorkerProviderHost> provider_host_; 74 base::WeakPtr<ServiceWorkerProviderHost> provider_host_;
75 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context_; 75 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context_;
76 ResourceType::Type resource_type_; 76 ResourceType::Type resource_type_;
77 77
78 private:
78 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRequestHandler); 79 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRequestHandler);
79 }; 80 };
80 81
81 } // namespace content 82 } // namespace content
82 83
83 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ 84 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698