Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Side by Side Diff: chrome/browser/ui/confirm_bubble_model.cc

Issue 2911773002: Clean up unused grit header includes in chrome/ (Closed)
Patch Set: rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
9 #include "components/strings/grit/components_strings.h" 8 #include "components/strings/grit/components_strings.h"
10 #include "ui/base/l10n/l10n_util.h" 9 #include "ui/base/l10n/l10n_util.h"
11 10
12 ConfirmBubbleModel::ConfirmBubbleModel() { 11 ConfirmBubbleModel::ConfirmBubbleModel() {
13 } 12 }
14 13
15 ConfirmBubbleModel::~ConfirmBubbleModel() { 14 ConfirmBubbleModel::~ConfirmBubbleModel() {
16 } 15 }
17 16
18 int ConfirmBubbleModel::GetButtons() const { 17 int ConfirmBubbleModel::GetButtons() const {
(...skipping 13 matching lines...) Expand all
32 base::string16 ConfirmBubbleModel::GetLinkText() const { 31 base::string16 ConfirmBubbleModel::GetLinkText() const {
33 return base::string16(); 32 return base::string16();
34 } 33 }
35 34
36 GURL ConfirmBubbleModel::GetLinkURL() const { 35 GURL ConfirmBubbleModel::GetLinkURL() const {
37 return GURL(); 36 return GURL();
38 } 37 }
39 38
40 void ConfirmBubbleModel::LinkClicked() { 39 void ConfirmBubbleModel::LinkClicked() {
41 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698