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

Side by Side Diff: content/browser/service_worker/service_worker_context.cc

Issue 23615009: Stub out initial NavigationController browser implementation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update to ToT Created 7 years, 3 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 #include "content/browser/service_worker/service_worker_context.h"
6
7 #include "base/files/file_path.h"
8 #include "webkit/browser/quota/quota_manager.h"
9
10 namespace content {
11
12 const base::FilePath::CharType kServiceWorkerDirectory[] =
13 FILE_PATH_LITERAL("ServiceWorker");
14
15 ServiceWorkerContext::ServiceWorkerContext(
16 const base::FilePath& path,
17 quota::QuotaManagerProxy* quota_manager_proxy)
18 : quota_manager_proxy_(quota_manager_proxy) {
19 if (!path.empty())
20 path_ = path.Append(kServiceWorkerDirectory);
21 }
22
23 ServiceWorkerContext::~ServiceWorkerContext() {}
24
25 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698