| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/confirm_bubble_model.h" | 5 #include "chrome/browser/ui/confirm_bubble_model.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/grit/generated_resources.h" | 8 #include "chrome/grit/generated_resources.h" |
| 9 #include "grit/components_strings.h" | 9 #include "components/strings/grit/components_strings.h" |
| 10 #include "ui/base/l10n/l10n_util.h" | 10 #include "ui/base/l10n/l10n_util.h" |
| 11 | 11 |
| 12 ConfirmBubbleModel::ConfirmBubbleModel() { | 12 ConfirmBubbleModel::ConfirmBubbleModel() { |
| 13 } | 13 } |
| 14 | 14 |
| 15 ConfirmBubbleModel::~ConfirmBubbleModel() { | 15 ConfirmBubbleModel::~ConfirmBubbleModel() { |
| 16 } | 16 } |
| 17 | 17 |
| 18 int ConfirmBubbleModel::GetButtons() const { | 18 int ConfirmBubbleModel::GetButtons() const { |
| 19 return BUTTON_OK | BUTTON_CANCEL; | 19 return BUTTON_OK | BUTTON_CANCEL; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 32 base::string16 ConfirmBubbleModel::GetLinkText() const { | 32 base::string16 ConfirmBubbleModel::GetLinkText() const { |
| 33 return base::string16(); | 33 return base::string16(); |
| 34 } | 34 } |
| 35 | 35 |
| 36 GURL ConfirmBubbleModel::GetLinkURL() const { | 36 GURL ConfirmBubbleModel::GetLinkURL() const { |
| 37 return GURL(); | 37 return GURL(); |
| 38 } | 38 } |
| 39 | 39 |
| 40 void ConfirmBubbleModel::LinkClicked() { | 40 void ConfirmBubbleModel::LinkClicked() { |
| 41 } | 41 } |
| OLD | NEW |