gunsch | 1365750 | 2015-04-13 17:36:15 | [diff] [blame^] | 1 | // Copyright 2015 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 "chromecast/browser/cast_quota_permission_context.h" |
| 6 | |
| 7 | namespace chromecast { |
| 8 | |
| 9 | CastQuotaPermissionContext::CastQuotaPermissionContext() { |
| 10 | } |
| 11 | |
| 12 | CastQuotaPermissionContext::~CastQuotaPermissionContext() { |
| 13 | } |
| 14 | |
| 15 | void CastQuotaPermissionContext::RequestQuotaPermission( |
| 16 | const content::StorageQuotaParams& params, |
| 17 | int render_process_id, |
| 18 | const PermissionCallback& callback) { |
| 19 | callback.Run( |
| 20 | content::QuotaPermissionContext::QUOTA_PERMISSION_RESPONSE_ALLOW); |
| 21 | } |
| 22 | |
| 23 | } // namespace chromecast |