blob: 14f563de40ffd0bfb999e7d69158af1d3dda5738 [file] [log] [blame]
// Copyright 2013 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_UI_COCOA_INFOBARS_INFOBAR_COCOA_H_
#define CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_COCOA_H_
#include "base/mac/scoped_nsobject.h"
#include "base/memory/weak_ptr.h"
#include "components/infobars/core/infobar.h"
@class InfoBarController;
// The cocoa specific implementation of InfoBar. The real info bar logic is
// actually in InfoBarController.
class InfoBarCocoa : public infobars::InfoBar {
public:
explicit InfoBarCocoa(scoped_ptr<infobars::InfoBarDelegate> delegate);
virtual ~InfoBarCocoa();
InfoBarController* controller() const { return controller_; }
void set_controller(InfoBarController* controller) {
controller_.reset([controller retain]);
}
// These functions allow access to protected InfoBar functions.
infobars::InfoBarManager* OwnerCocoa();
base::WeakPtr<InfoBarCocoa> GetWeakPtr();
private:
// The Objective-C class that contains most of the info bar logic.
base::scoped_nsobject<InfoBarController> controller_;
// Used to vend the link back to this for |controller_|.
base::WeakPtrFactory<InfoBarCocoa> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(InfoBarCocoa);
};
#endif // CHROME_BROWSER_UI_COCOA_INFOBARS_INFOBAR_COCOA_H_