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

Side by Side Diff: chrome/browser/chromeos/options/vpn_config_view.h

Issue 10827271: Replace views::Event with ui::Event. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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) 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_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_
6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 30 matching lines...) Expand all
41 virtual ~VPNConfigView(); 41 virtual ~VPNConfigView();
42 42
43 // views::TextfieldController: 43 // views::TextfieldController:
44 virtual void ContentsChanged(views::Textfield* sender, 44 virtual void ContentsChanged(views::Textfield* sender,
45 const string16& new_contents) OVERRIDE; 45 const string16& new_contents) OVERRIDE;
46 virtual bool HandleKeyEvent(views::Textfield* sender, 46 virtual bool HandleKeyEvent(views::Textfield* sender,
47 const ui::KeyEvent& key_event) OVERRIDE; 47 const ui::KeyEvent& key_event) OVERRIDE;
48 48
49 // views::ButtonListener: 49 // views::ButtonListener:
50 virtual void ButtonPressed(views::Button* sender, 50 virtual void ButtonPressed(views::Button* sender,
51 const views::Event& event) OVERRIDE; 51 const ui::Event& event) OVERRIDE;
52 52
53 // views::ComboboxListener: 53 // views::ComboboxListener:
54 virtual void OnSelectedIndexChanged(views::Combobox* combobox) OVERRIDE; 54 virtual void OnSelectedIndexChanged(views::Combobox* combobox) OVERRIDE;
55 55
56 // CertLibrary::Observer: 56 // CertLibrary::Observer:
57 virtual void OnCertificatesLoaded(bool initial_load) OVERRIDE; 57 virtual void OnCertificatesLoaded(bool initial_load) OVERRIDE;
58 58
59 // ChildNetworkConfigView: 59 // ChildNetworkConfigView:
60 virtual views::View* GetInitiallyFocusedView() OVERRIDE; 60 virtual views::View* GetInitiallyFocusedView() OVERRIDE;
61 virtual bool CanLogin() OVERRIDE; 61 virtual bool CanLogin() OVERRIDE;
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 views::Label* group_name_label_; 158 views::Label* group_name_label_;
159 views::Textfield* group_name_textfield_; 159 views::Textfield* group_name_textfield_;
160 views::Label* error_label_; 160 views::Label* error_label_;
161 161
162 DISALLOW_COPY_AND_ASSIGN(VPNConfigView); 162 DISALLOW_COPY_AND_ASSIGN(VPNConfigView);
163 }; 163 };
164 164
165 } // namespace chromeos 165 } // namespace chromeos
166 166
167 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ 167 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/options/network_config_view.cc ('k') | chrome/browser/chromeos/options/vpn_config_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698