| Index: chrome/browser/extensions/api/guest_view/guest_view_internal_api.h
|
| diff --git a/chrome/browser/extensions/api/guest_view/guest_view_internal_api.h b/chrome/browser/extensions/api/guest_view/guest_view_internal_api.h
|
| deleted file mode 100644
|
| index 7fd1f3ca0961f8712d46ea364f885bfb4df122b9..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/extensions/api/guest_view/guest_view_internal_api.h
|
| +++ /dev/null
|
| @@ -1,44 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef CHROME_BROWSER_EXTENSIONS_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_
|
| -#define CHROME_BROWSER_EXTENSIONS_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_
|
| -
|
| -#include "extensions/browser/extension_function.h"
|
| -
|
| -namespace extensions {
|
| -
|
| -class GuestViewInternalCreateGuestFunction : public AsyncExtensionFunction {
|
| - public:
|
| - DECLARE_EXTENSION_FUNCTION("guestViewInternal.createGuest",
|
| - GUESTVIEWINTERNAL_CREATEGUEST);
|
| - GuestViewInternalCreateGuestFunction();
|
| -
|
| - protected:
|
| - virtual ~GuestViewInternalCreateGuestFunction() {}
|
| - virtual bool RunAsync() OVERRIDE FINAL;
|
| -
|
| - private:
|
| - void CreateGuestCallback(content::WebContents* guest_web_contents);
|
| - DISALLOW_COPY_AND_ASSIGN(GuestViewInternalCreateGuestFunction);
|
| -};
|
| -
|
| -class GuestViewInternalSetAutoSizeFunction : public AsyncExtensionFunction {
|
| - public:
|
| - DECLARE_EXTENSION_FUNCTION("guestViewInternal.setAutoSize",
|
| - GUESTVIEWINTERNAL_SETAUTOSIZE);
|
| -
|
| - GuestViewInternalSetAutoSizeFunction();
|
| -
|
| - protected:
|
| - virtual ~GuestViewInternalSetAutoSizeFunction();
|
| - virtual bool RunAsync() OVERRIDE FINAL;
|
| -
|
| - private:
|
| - DISALLOW_COPY_AND_ASSIGN(GuestViewInternalSetAutoSizeFunction);
|
| -};
|
| -
|
| -} // namespace extensions
|
| -
|
| -#endif // CHROME_BROWSER_EXTENSIONS_API_GUEST_VIEW_GUEST_VIEW_INTERNAL_API_H_
|
|
|