| Index: chrome/browser/infobars/chrome_confirm_infobar_delegate_factory.cc
|
| diff --git a/chrome/browser/infobars/chrome_confirm_infobar_delegate_factory.cc b/chrome/browser/infobars/chrome_confirm_infobar_delegate_factory.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c5bd824ea8096655747063e4cadfd1a2eb8a009a
|
| --- /dev/null
|
| +++ b/chrome/browser/infobars/chrome_confirm_infobar_delegate_factory.cc
|
| @@ -0,0 +1,23 @@
|
| +// 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.
|
| +
|
| +#include "chrome/browser/infobars/chrome_confirm_infobar_delegate_factory.h"
|
| +
|
| +#include "base/memory/singleton.h"
|
| +
|
| +ChromeConfirmInfoBarDelegateFactory::ChromeConfirmInfoBarDelegateFactory() {
|
| +}
|
| +
|
| +ChromeConfirmInfoBarDelegateFactory::~ChromeConfirmInfoBarDelegateFactory() {
|
| +}
|
| +
|
| +// static
|
| +ChromeConfirmInfoBarDelegateFactory*
|
| +ChromeConfirmInfoBarDelegateFactory::GetInstance() {
|
| + return Singleton<ChromeConfirmInfoBarDelegateFactory>::get();
|
| +}
|
| +
|
| +// ChromeConfirmInfoBarDelegateFactory::CreateInfoBar implementation depends
|
| +// on the UI system used and is defined in a chrome/browser/ui/*/infobars
|
| +// implementation file.
|
|
|