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

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

Issue 6307019: Cleanup: remove unused internet and system pages for chrome os options. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Remove ifdef code in content_page_gtk.cc Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/chromeos/options/internet_page_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
(Empty)
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_INTERNET_PAGE_VIEW_H_
6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_INTERNET_PAGE_VIEW_H_
7 #pragma once
8
9 #include "chrome/browser/chromeos/cros/network_library.h"
10 #include "chrome/browser/chromeos/options/settings_page_view.h"
11
12 namespace views {
13 class ScrollView;
14 } // namespace views
15
16 namespace chromeos {
17
18 class InternetPageContentView;
19
20 // Internet settings page for Chrome OS
21 class InternetPageView : public SettingsPageView,
22 public NetworkLibrary::NetworkManagerObserver {
23 public:
24 explicit InternetPageView(Profile* profile);
25 virtual ~InternetPageView();
26
27 // NetworkLibrary::NetworkManagerObserver implementation.
28 virtual void OnNetworkManagerChanged(NetworkLibrary* obj);
29
30 // views::View overrides:
31 virtual void Layout();
32
33 protected:
34 // SettingsPageView implementation:
35 virtual void InitControlLayout();
36
37 private:
38 // The contents of the internet page view.
39 InternetPageContentView* contents_view_;
40
41 // The scroll view that contains the advanced options.
42 views::ScrollView* scroll_view_;
43
44 DISALLOW_COPY_AND_ASSIGN(InternetPageView);
45 };
46
47 } // namespace chromeos
48
49 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_INTERNET_PAGE_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/options/internet_page_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698