1 // Copyright 2014 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 #ifndef EXTENSIONS_BROWSER_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_
6 #define EXTENSIONS_BROWSER_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_
8 #include "extensions/browser/extension_function.h"
10 namespace extensions
{
12 class GuestViewInternalCreateGuestFunction
: public AsyncExtensionFunction
{
14 DECLARE_EXTENSION_FUNCTION("guestViewInternal.createGuest",
15 GUESTVIEWINTERNAL_CREATEGUEST
);
16 GuestViewInternalCreateGuestFunction();
19 ~GuestViewInternalCreateGuestFunction() override
{}
20 bool RunAsync() final
;
23 void CreateGuestCallback(content::WebContents
* guest_web_contents
);
24 DISALLOW_COPY_AND_ASSIGN(GuestViewInternalCreateGuestFunction
);
27 class GuestViewInternalDestroyGuestFunction
: public AsyncExtensionFunction
{
29 DECLARE_EXTENSION_FUNCTION("guestViewInternal.destroyGuest",
30 GUESTVIEWINTERNAL_DESTROYGUEST
);
31 GuestViewInternalDestroyGuestFunction();
34 ~GuestViewInternalDestroyGuestFunction() override
;
35 bool RunAsync() final
;
38 void DestroyGuestCallback(content::WebContents
* guest_web_contents
);
39 DISALLOW_COPY_AND_ASSIGN(GuestViewInternalDestroyGuestFunction
);
42 class GuestViewInternalSetSizeFunction
: public AsyncExtensionFunction
{
44 DECLARE_EXTENSION_FUNCTION("guestViewInternal.setSize",
45 GUESTVIEWINTERNAL_SETAUTOSIZE
);
47 GuestViewInternalSetSizeFunction();
50 ~GuestViewInternalSetSizeFunction() override
;
51 bool RunAsync() final
;
54 DISALLOW_COPY_AND_ASSIGN(GuestViewInternalSetSizeFunction
);
57 } // namespace extensions
59 #endif // EXTENSIONS_BROWSER_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_