chromium/extensions/browser/api/guest_view/guest_view_internal_api.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXTENSIONS_BROWSER_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_
#define EXTENSIONS_BROWSER_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_

#include "extensions/browser/extension_function.h"

namespace guest_view {
class GuestViewBase;
}  //  namespace guest_view

namespace extensions {

class GuestViewInternalCreateGuestFunction : public ExtensionFunction {};

class GuestViewInternalDestroyUnattachedGuestFunction
    : public ExtensionFunction {};

class GuestViewInternalSetSizeFunction : public ExtensionFunction {};

}  // namespace extensions

#endif  // EXTENSIONS_BROWSER_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_