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

Side by Side Diff: chrome_frame/infobar_content.h

Issue 4766003: Preview CL for adding an Infobar facility to Google Chrome Frame.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698