| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_FRAME_INFOBAR_CONTENT_H_ |
| 6 |
| 7 class InfobarContent { |
| 8 public: |
| 9 class ContentFrame { |
| 10 public: |
| 11 virtual ~ContentFrame() {} |
| 12 virtual HWND GetFrameWindow() = 0; |
| 13 virtual void CloseInfobar() = 0; |
| 14 }; |
| 15 |
| 16 virtual HRESULT InstallInFrame(ContentFrame* frame) = 0; |
| 17 virtual void Reset() = 0; |
| 18 virtual void OnShow() = 0; |
| 19 virtual void OnHide() = 0; |
| 20 virtual void SetDimensions(const RECT& dimensions) = 0; |
| 21 }; |
| 22 |
| 23 #endif // CHROME_FRAME_INFOBAR_CONTENT_H_ |
| OLD | NEW |