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

Side by Side Diff: chrome/views/window.h

Issue 20112: Cleanup forward declared classes that are not needed. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | « chrome/views/view.h ('k') | no next file » | 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) 2006-2008 The Chromium Authors. All rights reserved. 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 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_VIEWS_WINDOW_H__ 5 #ifndef CHROME_VIEWS_WINDOW_H__
6 #define CHROME_VIEWS_WINDOW_H__ 6 #define CHROME_VIEWS_WINDOW_H__
7 7
8 #include "chrome/common/notification_registrar.h" 8 #include "chrome/common/notification_registrar.h"
9 #include "chrome/views/widget_win.h" 9 #include "chrome/views/widget_win.h"
10 10
11 namespace gfx { 11 namespace gfx {
12 class Point;
12 class Size; 13 class Size;
13 class Path;
14 class Point;
15 }; 14 };
16 15
17 class PrefService;
18
19 namespace views { 16 namespace views {
20 17
21 class ClientView; 18 class ClientView;
22 class Client; 19 class Client;
23 class NonClientView; 20 class NonClientView;
24 class WindowDelegate; 21 class WindowDelegate;
25 22
26 /////////////////////////////////////////////////////////////////////////////// 23 ///////////////////////////////////////////////////////////////////////////////
27 // 24 //
28 // Window 25 // Window
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 // or not it actually is. 260 // or not it actually is.
264 bool disable_inactive_rendering_; 261 bool disable_inactive_rendering_;
265 262
266 // The saved maximized state for this window. See note in SetInitialBounds 263 // The saved maximized state for this window. See note in SetInitialBounds
267 // that explains why we save this. 264 // that explains why we save this.
268 bool saved_maximized_state_; 265 bool saved_maximized_state_;
269 266
270 // Hold onto notifications. 267 // Hold onto notifications.
271 NotificationRegistrar notification_registrar_; 268 NotificationRegistrar notification_registrar_;
272 269
273 DISALLOW_EVIL_CONSTRUCTORS(Window); 270 DISALLOW_COPY_AND_ASSIGN(Window);
274 }; 271 };
275 272
276 } // namespace views 273 } // namespace views
277 274
278 #endif // CHROME_VIEWS_WINDOW_H__ 275 #endif // CHROME_VIEWS_WINDOW_H__
279
OLDNEW
« no previous file with comments | « chrome/views/view.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698