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

Side by Side Diff: chrome/browser/ui/views/website_settings/website_settings_popup_view.h

Issue 1407093007: Autofill: Add legal message footer to save credit card bubble. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 1 month 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 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 // views::BubbleDelegateView implementation. 81 // views::BubbleDelegateView implementation.
82 void OnWidgetDestroying(views::Widget* widget) override; 82 void OnWidgetDestroying(views::Widget* widget) override;
83 83
84 // views::ButtonListener implementation. 84 // views::ButtonListener implementation.
85 void ButtonPressed(views::Button* button, const ui::Event& event) override; 85 void ButtonPressed(views::Button* button, const ui::Event& event) override;
86 86
87 // views::LinkListener implementation. 87 // views::LinkListener implementation.
88 void LinkClicked(views::Link* source, int event_flags) override; 88 void LinkClicked(views::Link* source, int event_flags) override;
89 89
90 // views::StyledLabelListener implementation. 90 // views::StyledLabelListener implementation.
91 void StyledLabelLinkClicked(const gfx::Range& range, 91 void StyledLabelLinkClicked(views::StyledLabel* label,
92 const gfx::Range& range,
92 int event_flags) override; 93 int event_flags) override;
93 94
94 // views::TabbedPaneListener implementations. 95 // views::TabbedPaneListener implementations.
95 void TabSelectedAt(int index) override; 96 void TabSelectedAt(int index) override;
96 97
97 // views::View implementation. 98 // views::View implementation.
98 gfx::Size GetPreferredSize() const override; 99 gfx::Size GetPreferredSize() const override;
99 100
100 // WebsiteSettingsUI implementations. 101 // WebsiteSettingsUI implementations.
101 void SetCookieInfo(const CookieInfoList& cookie_info_list) override; 102 void SetCookieInfo(const CookieInfoList& cookie_info_list) override;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 views::Link* site_settings_link_; 191 views::Link* site_settings_link_;
191 192
192 views::View* connection_info_content_; 193 views::View* connection_info_content_;
193 194
194 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_; 195 base::WeakPtrFactory<WebsiteSettingsPopupView> weak_factory_;
195 196
196 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView); 197 DISALLOW_COPY_AND_ASSIGN(WebsiteSettingsPopupView);
197 }; 198 };
198 199
199 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_ H_ 200 #endif // CHROME_BROWSER_UI_VIEWS_WEBSITE_SETTINGS_WEBSITE_SETTINGS_POPUP_VIEW_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698