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

Side by Side Diff: chrome/browser/autofill/autofill_cc_infobar_delegate.cc

Issue 6263008: Move ResourceBundle, DataPack to ui/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/autofill/autofill_cc_infobar_delegate.h" 5 #include "chrome/browser/autofill/autofill_cc_infobar_delegate.h"
6 6
7 #include "app/l10n_util.h" 7 #include "app/l10n_util.h"
8 #include "app/resource_bundle.h"
9 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
10 #include "chrome/browser/autofill/autofill_cc_infobar.h" 9 #include "chrome/browser/autofill/autofill_cc_infobar.h"
11 #include "chrome/browser/autofill/autofill_manager.h" 10 #include "chrome/browser/autofill/autofill_manager.h"
12 #include "chrome/browser/browser_list.h" 11 #include "chrome/browser/browser_list.h"
13 #include "chrome/browser/tab_contents/tab_contents.h" 12 #include "chrome/browser/tab_contents/tab_contents.h"
14 #include "chrome/browser/tab_contents/tab_contents_delegate.h" 13 #include "chrome/browser/tab_contents/tab_contents_delegate.h"
15 #include "grit/chromium_strings.h" 14 #include "grit/chromium_strings.h"
16 #include "grit/generated_resources.h" 15 #include "grit/generated_resources.h"
17 #include "grit/theme_resources.h" 16 #include "grit/theme_resources.h"
18 #include "third_party/skia/include/core/SkBitmap.h" 17 #include "third_party/skia/include/core/SkBitmap.h"
18 #include "ui/base/resource/resource_bundle.h"
19 19
20 AutoFillCCInfoBarDelegate::AutoFillCCInfoBarDelegate(TabContents* tab_contents, 20 AutoFillCCInfoBarDelegate::AutoFillCCInfoBarDelegate(TabContents* tab_contents,
21 AutoFillManager* host) 21 AutoFillManager* host)
22 : ConfirmInfoBarDelegate(tab_contents), 22 : ConfirmInfoBarDelegate(tab_contents),
23 host_(host) { 23 host_(host) {
24 } 24 }
25 25
26 AutoFillCCInfoBarDelegate::~AutoFillCCInfoBarDelegate() { 26 AutoFillCCInfoBarDelegate::~AutoFillCCInfoBarDelegate() {
27 } 27 }
28 28
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 #if defined(OS_WIN) 99 #if defined(OS_WIN)
100 InfoBar* AutoFillCCInfoBarDelegate::CreateInfoBar() { 100 InfoBar* AutoFillCCInfoBarDelegate::CreateInfoBar() {
101 return CreateAutofillCcInfoBar(this); 101 return CreateAutofillCcInfoBar(this);
102 } 102 }
103 #endif // defined(OS_WIN) 103 #endif // defined(OS_WIN)
104 104
105 InfoBarDelegate::Type AutoFillCCInfoBarDelegate::GetInfoBarType() { 105 InfoBarDelegate::Type AutoFillCCInfoBarDelegate::GetInfoBarType() {
106 return PAGE_ACTION_TYPE; 106 return PAGE_ACTION_TYPE;
107 } 107 }
OLDNEW
« no previous file with comments | « chrome/browser/autocomplete/autocomplete_popup_view_mac.mm ('k') | chrome/browser/autofill/autofill_cc_infobar_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698