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

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

Issue 141523005: Combobox: Rename styles to STYLE_NORMAL and STYLE_ACTION and modify behaviors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bug fix for Windows Created 6 years, 10 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/options/vpn_config_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 virtual void ContentsChanged(views::Textfield* sender, 52 virtual void ContentsChanged(views::Textfield* sender,
53 const base::string16& new_contents) OVERRIDE; 53 const base::string16& new_contents) OVERRIDE;
54 virtual bool HandleKeyEvent(views::Textfield* sender, 54 virtual bool HandleKeyEvent(views::Textfield* sender,
55 const ui::KeyEvent& key_event) OVERRIDE; 55 const ui::KeyEvent& key_event) OVERRIDE;
56 56
57 // views::ButtonListener: 57 // views::ButtonListener:
58 virtual void ButtonPressed(views::Button* sender, 58 virtual void ButtonPressed(views::Button* sender,
59 const ui::Event& event) OVERRIDE; 59 const ui::Event& event) OVERRIDE;
60 60
61 // views::ComboboxListener: 61 // views::ComboboxListener:
62 virtual void OnSelectedIndexChanged(views::Combobox* combobox) OVERRIDE; 62 virtual void OnPerformAction(views::Combobox* combobox) OVERRIDE;
63 63
64 // CertLibrary::Observer: 64 // CertLibrary::Observer:
65 virtual void OnCertificatesLoaded(bool initial_load) OVERRIDE; 65 virtual void OnCertificatesLoaded(bool initial_load) OVERRIDE;
66 66
67 // ChildNetworkConfigView: 67 // ChildNetworkConfigView:
68 virtual base::string16 GetTitle() const OVERRIDE; 68 virtual base::string16 GetTitle() const OVERRIDE;
69 virtual views::View* GetInitiallyFocusedView() OVERRIDE; 69 virtual views::View* GetInitiallyFocusedView() OVERRIDE;
70 virtual bool CanLogin() OVERRIDE; 70 virtual bool CanLogin() OVERRIDE;
71 virtual bool Login() OVERRIDE; 71 virtual bool Login() OVERRIDE;
72 virtual void Cancel() OVERRIDE; 72 virtual void Cancel() OVERRIDE;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 std::string client_cert_id_; 184 std::string client_cert_id_;
185 185
186 base::WeakPtrFactory<VPNConfigView> weak_ptr_factory_; 186 base::WeakPtrFactory<VPNConfigView> weak_ptr_factory_;
187 187
188 DISALLOW_COPY_AND_ASSIGN(VPNConfigView); 188 DISALLOW_COPY_AND_ASSIGN(VPNConfigView);
189 }; 189 };
190 190
191 } // namespace chromeos 191 } // namespace chromeos
192 192
193 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_ 193 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_VPN_CONFIG_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/options/vpn_config_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698