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

Unified Diff: content/public/browser/guest_sizer.h

Issue 910073003: <webview>: Make contentWindow available prior to attachment (on display:none). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed creis' comments Created 5 years, 9 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
Index: content/public/browser/guest_sizer.h
diff --git a/content/public/browser/guest_sizer.h b/content/public/browser/guest_sizer.h
deleted file mode 100644
index d8e240b944d9f8aa19685032c5c58fbeea097bc2..0000000000000000000000000000000000000000
--- a/content/public/browser/guest_sizer.h
+++ /dev/null
@@ -1,27 +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.
-
-// This module provides class that serves as a public interface for a
-// derived object that can size a guest.
-
-// This class currently only serves as a base class for BrowserPluginGuest, and
-// its API can only be accessed by a BrowserPluginGuestDelegate. This module
-// will go away once the migration to RenderFrame architecture has completed
-// (http://crbug.com/330264).
Charlie Reis 2015/03/09 18:52:58 You may have missed when I asked before-- is Guest
Fady Samuel 2015/03/09 23:02:41 The answer is...I'm not sure any more. We'll figur
-
-#ifndef CONTENT_PUBLIC_BROWSER_GUEST_SIZER_H_
-#define CONTENT_PUBLIC_BROWSER_GUEST_SIZER_H_
-
-#include "ui/gfx/geometry/size.h"
-
-namespace content {
-
-class GuestSizer {
- public:
- virtual void SizeContents(const gfx::Size& new_size) = 0;
-};
-
-} // namespace content
-
-#endif // CONTENT_PUBLIC_BROWSER_GUEST_SIZER_H_

Powered by Google App Engine
This is Rietveld 408576698