| Index: content/public/browser/quota_permission_context.h
|
| diff --git a/content/browser/quota_permission_context.h b/content/public/browser/quota_permission_context.h
|
| similarity index 73%
|
| rename from content/browser/quota_permission_context.h
|
| rename to content/public/browser/quota_permission_context.h
|
| index ab441d43f85a6e5c91b367a1ed6c5ed8d1674256..2d67187f66469d684887bf36bd1cea0fcd088475 100644
|
| --- a/content/browser/quota_permission_context.h
|
| +++ b/content/public/browser/quota_permission_context.h
|
| @@ -1,9 +1,10 @@
|
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CONTENT_BROWSER_QUOTA_PERMISSION_CONTEXT_H_
|
| -#define CONTENT_BROWSER_QUOTA_PERMISSION_CONTEXT_H_
|
| +#ifndef CONTENT_PUBLIC_BROWSER_QUOTA_PERMISSION_CONTEXT_H_
|
| +#define CONTENT_PUBLIC_BROWSER_QUOTA_PERMISSION_CONTEXT_H_
|
| +#pragma once
|
|
|
| #include "base/callback.h"
|
| #include "base/memory/ref_counted.h"
|
| @@ -11,6 +12,8 @@
|
|
|
| class GURL;
|
|
|
| +namespace content {
|
| +
|
| class QuotaPermissionContext
|
| : public base::RefCountedThreadSafe<QuotaPermissionContext> {
|
| public:
|
| @@ -36,4 +39,6 @@ class QuotaPermissionContext
|
| virtual ~QuotaPermissionContext() {}
|
| };
|
|
|
| -#endif // CONTENT_BROWSER_QUOTA_PERMISSION_CONTEXT_H_
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_PUBLIC_BROWSER_QUOTA_PERMISSION_CONTEXT_H_
|
|
|