Chromium Code Reviews| 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_ |