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

Side by Side Diff: chrome/browser/infobars/infobar_delegate.cc

Issue 9235004: [Garbled Text][Infobar] Adding infobar to suggest turning on encoding detection. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 8 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
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/infobars/infobar_delegate.h" 5 #include "chrome/browser/infobars/infobar_delegate.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/browser/infobars/infobar_tab_helper.h" 9 #include "chrome/browser/infobars/infobar_tab_helper.h"
10 #include "content/public/browser/navigation_controller.h" 10 #include "content/public/browser/navigation_controller.h"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 } 47 }
48 48
49 ConfirmInfoBarDelegate* InfoBarDelegate::AsConfirmInfoBarDelegate() { 49 ConfirmInfoBarDelegate* InfoBarDelegate::AsConfirmInfoBarDelegate() {
50 return NULL; 50 return NULL;
51 } 51 }
52 52
53 ExtensionInfoBarDelegate* InfoBarDelegate::AsExtensionInfoBarDelegate() { 53 ExtensionInfoBarDelegate* InfoBarDelegate::AsExtensionInfoBarDelegate() {
54 return NULL; 54 return NULL;
55 } 55 }
56 56
57 GarbledTextInfoBarDelegate* InfoBarDelegate::AsGarbledTextInfoBarDelegate() {
58 return NULL;
59 }
60
57 InsecureContentInfoBarDelegate* 61 InsecureContentInfoBarDelegate*
58 InfoBarDelegate::AsInsecureContentInfoBarDelegate() { 62 InfoBarDelegate::AsInsecureContentInfoBarDelegate() {
59 return NULL; 63 return NULL;
60 } 64 }
61 65
62 LinkInfoBarDelegate* InfoBarDelegate::AsLinkInfoBarDelegate() { 66 LinkInfoBarDelegate* InfoBarDelegate::AsLinkInfoBarDelegate() {
63 return NULL; 67 return NULL;
64 } 68 }
65 69
66 PluginInstallerInfoBarDelegate* 70 PluginInstallerInfoBarDelegate*
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 return (contents_unique_id_ != details.entry->GetUniqueID()) || 105 return (contents_unique_id_ != details.entry->GetUniqueID()) ||
102 (content::PageTransitionStripQualifier( 106 (content::PageTransitionStripQualifier(
103 details.entry->GetTransitionType()) == 107 details.entry->GetTransitionType()) ==
104 content::PAGE_TRANSITION_RELOAD); 108 content::PAGE_TRANSITION_RELOAD);
105 } 109 }
106 110
107 void InfoBarDelegate::RemoveSelf() { 111 void InfoBarDelegate::RemoveSelf() {
108 if (owner_) 112 if (owner_)
109 owner_->RemoveInfoBar(this); // Clears |owner_|. 113 owner_->RemoveInfoBar(this); // Clears |owner_|.
110 } 114 }
OLDNEW
« no previous file with comments | « chrome/browser/infobars/infobar_delegate.h ('k') | chrome/browser/profiles/off_the_record_profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698