// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef PPAPI_SHARED_IMPL_PPB_VIEW_SHARED_H_ #define PPAPI_SHARED_IMPL_PPB_VIEW_SHARED_H_ #include "base/compiler_specific.h" #include "ppapi/c/pp_rect.h" #include "ppapi/c/pp_size.h" #include "ppapi/shared_impl/resource.h" #include "ppapi/thunk/ppb_view_api.h" namespace ppapi { // If you add to this struct, be sure to update the serialization in // ppapi_messages.h. struct PPAPI_SHARED_EXPORT ViewData { … }; class PPAPI_SHARED_EXPORT PPB_View_Shared : public Resource, public thunk::PPB_View_API { … }; } // namespace ppapi #endif // PPAPI_SHARED_IMPL_PPB_VIEW_SHARED_H_