Respond with QuotaExceededError when IndexedDB has no disk space on open.
[chromium-blink-merge.git] / content / common / input / event_packet.cc
blob0f839cb5926ba4475fbc7abc3ed44f13b5f012fa
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.
5 #include "content/common/input/event_packet.h"
7 #include "content/common/input/input_event.h"
9 namespace content {
11 EventPacket::EventPacket() : id_(0) {}
13 EventPacket::~EventPacket() {}
15 bool EventPacket::Add(scoped_ptr<InputEvent> event) {
16 if (!event || !event->valid())
17 return false;
18 events_.push_back(event.release());
19 return true;
22 } // namespace content