Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1288)

Unified Diff: chrome/browser/extensions/api/guest_view/guest_view_internal_api.h

Issue 494853004: Move guest_view_internal_api to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/extensions/api/guest_view/guest_view_internal_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « no previous file | chrome/browser/extensions/api/guest_view/guest_view_internal_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698