OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ppapi/shared_impl/function_group_base.h" | 5 #include "ppapi/shared_impl/function_group_base.h" |
6 | 6 |
7 namespace ppapi { | 7 namespace ppapi { |
8 | 8 |
9 FunctionGroupBase::~FunctionGroupBase() { | 9 FunctionGroupBase::~FunctionGroupBase() { |
10 } | 10 } |
11 | 11 |
12 #define DEFINE_TYPE_GETTER(FUNCTIONS) \ | 12 #define DEFINE_TYPE_GETTER(FUNCTIONS) \ |
13 thunk::FUNCTIONS* FunctionGroupBase::As##FUNCTIONS() { return NULL; } | 13 thunk::FUNCTIONS* FunctionGroupBase::As##FUNCTIONS() { return NULL; } |
14 FOR_ALL_PPAPI_FUNCTION_APIS(DEFINE_TYPE_GETTER) | 14 FOR_ALL_PPAPI_FUNCTION_APIS(DEFINE_TYPE_GETTER) |
15 #undef DEFINE_TYPE_GETTER | 15 #undef DEFINE_TYPE_GETTER |
16 | 16 |
17 } // namespace ppapi | 17 } // namespace ppapi |
OLD | NEW |