Respond with QuotaExceededError when IndexedDB has no disk space on open.
[chromium-blink-merge.git] / content / common / pepper_renderer_instance_data.cc
blob73b67a7f323d0fbd29cc4ec2fd557eca132cf08b
1 // Copyright (c) 2012 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.
5 #include "content/common/pepper_renderer_instance_data.h"
7 namespace content {
9 PepperRendererInstanceData::PepperRendererInstanceData()
10 : render_process_id(0),
11 render_view_id(0) {
14 PepperRendererInstanceData::PepperRendererInstanceData(
15 int render_process,
16 int render_view,
17 const GURL& document,
18 const GURL& plugin)
19 : render_process_id(render_process),
20 render_view_id(render_view),
21 document_url(document),
22 plugin_url(plugin) {
25 PepperRendererInstanceData::~PepperRendererInstanceData() {
28 } // namespace content