[email protected] | f24448db | 2011-01-27 20:40:39 | [diff] [blame] | 1 | // Copyright (c) 2010 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 "ppapi/proxy/mock_resource.h" | ||||
6 | |||||
[email protected] | be0a84b | 2011-08-13 04:18:44 | [diff] [blame] | 7 | using ppapi::HostResource; |
[email protected] | 7f8b26b | 2011-08-18 15:41:01 | [diff] [blame^] | 8 | using ppapi::Resource; |
[email protected] | be0a84b | 2011-08-13 04:18:44 | [diff] [blame] | 9 | |
[email protected] | f24448db | 2011-01-27 20:40:39 | [diff] [blame] | 10 | namespace pp { |
11 | namespace proxy { | ||||
12 | |||||
[email protected] | 7f8b26b | 2011-08-18 15:41:01 | [diff] [blame^] | 13 | MockResource::MockResource(const HostResource& resource) : Resource(resource) { |
[email protected] | f24448db | 2011-01-27 20:40:39 | [diff] [blame] | 14 | } |
15 | |||||
16 | MockResource::~MockResource() { | ||||
17 | } | ||||
18 | |||||
[email protected] | f24448db | 2011-01-27 20:40:39 | [diff] [blame] | 19 | } // namespace proxy |
20 | } // namespace pp |