blob: 9316a7b2541b83b42ad6870af35b8c13ed044066 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (c) 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.
#include "chrome/browser/infobars/confirm_infobar_delegate.h"
#include "chrome/browser/translate/translate_infobar_delegate.h"
// Clank implementations of cross-platform API, never used
// since infobars are created using the InfoBarFactory but we need
// them implemented so the binary links both upstream and downstream.
InfoBar* ConfirmInfoBarDelegate::CreateInfoBar(InfoBarService* owner) {
NOTREACHED() << "ConfirmInfoBar: InfoBarFactory should be used on Android";
return NULL;
}
InfoBar* TranslateInfoBarDelegate::CreateInfoBar(InfoBarService* owner) {
return NULL;
}
|