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

Side by Side Diff: chrome/browser/chromeos/login/eula_view.h

Issue 3342004: Fixed the default value for 'crash report' on EULA screen.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 3 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/login/eula_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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_LOGIN_EULA_VIEW_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/chromeos/login/view_screen.h" 9 #include "chrome/browser/chromeos/login/view_screen.h"
10 #include "chrome/browser/prefs/pref_member.h"
11 #include "chrome/browser/tab_contents/tab_contents_delegate.h" 10 #include "chrome/browser/tab_contents/tab_contents_delegate.h"
12 #include "views/controls/button/button.h" 11 #include "views/controls/button/button.h"
13 #include "views/controls/link.h" 12 #include "views/controls/link.h"
14 #include "views/view.h" 13 #include "views/view.h"
15 14
16 namespace views { 15 namespace views {
17 16
18 class Checkbox; 17 class Checkbox;
19 class Label; 18 class Label;
20 class Link; 19 class Link;
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 views::Label* oem_eula_label_; 112 views::Label* oem_eula_label_;
114 DOMView* oem_eula_view_; 113 DOMView* oem_eula_view_;
115 views::Link* system_security_settings_link_; 114 views::Link* system_security_settings_link_;
116 views::NativeButton* cancel_button_; 115 views::NativeButton* cancel_button_;
117 views::NativeButton* continue_button_; 116 views::NativeButton* continue_button_;
118 117
119 chromeos::ScreenObserver* observer_; 118 chromeos::ScreenObserver* observer_;
120 119
121 GURL oem_eula_page_; 120 GURL oem_eula_page_;
122 121
123 BooleanPrefMember metrics_reporting_enabled_;
124
125 DISALLOW_COPY_AND_ASSIGN(EulaView); 122 DISALLOW_COPY_AND_ASSIGN(EulaView);
126 }; 123 };
127 124
128 class EulaScreen : public DefaultViewScreen<EulaView> { 125 class EulaScreen : public DefaultViewScreen<EulaView> {
129 public: 126 public:
130 explicit EulaScreen(WizardScreenDelegate* delegate) 127 explicit EulaScreen(WizardScreenDelegate* delegate)
131 : DefaultViewScreen<EulaView>(delegate) { 128 : DefaultViewScreen<EulaView>(delegate) {
132 } 129 }
133 private: 130 private:
134 DISALLOW_COPY_AND_ASSIGN(EulaScreen); 131 DISALLOW_COPY_AND_ASSIGN(EulaScreen);
135 }; 132 };
136 133
137 } // namespace chromeos 134 } // namespace chromeos
138 135
139 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_ 136 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_EULA_VIEW_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/login/eula_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698