• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2012 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 #include "chrome/browser/ui/confirm_bubble_model.h"
6 
7 #include "base/logging.h"
8 #include "grit/generated_resources.h"
9 #include "ui/base/l10n/l10n_util.h"
10 
ConfirmBubbleModel()11 ConfirmBubbleModel::ConfirmBubbleModel() {
12 }
13 
~ConfirmBubbleModel()14 ConfirmBubbleModel::~ConfirmBubbleModel() {
15 }
16 
GetButtons() const17 int ConfirmBubbleModel::GetButtons() const {
18   return BUTTON_OK | BUTTON_CANCEL;
19 }
20 
GetButtonLabel(BubbleButton button) const21 base::string16 ConfirmBubbleModel::GetButtonLabel(BubbleButton button) const {
22   return l10n_util::GetStringUTF16((button == BUTTON_OK) ? IDS_OK : IDS_CANCEL);
23 }
24 
Accept()25 void ConfirmBubbleModel::Accept() {
26 }
27 
Cancel()28 void ConfirmBubbleModel::Cancel() {
29 }
30 
GetLinkText() const31 base::string16 ConfirmBubbleModel::GetLinkText() const {
32   return base::string16();
33 }
34 
LinkClicked()35 void ConfirmBubbleModel::LinkClicked() {
36 }
37