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

Side by Side Diff: chrome/browser/ui/views/frame/browser_non_client_frame_view_aura.h

Issue 8463009: Cleanup: Remove unneeded forward declarations from chrome/browser/ui/views. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase, no code change Created 9 years, 1 month 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_
7 #pragma once 7 #pragma once
8 8
9 #include "ui/aura_shell/window_frame.h" 9 #include "ui/aura_shell/window_frame.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h" 11 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
12 #include "views/controls/button/button.h" 12 #include "views/controls/button/button.h"
13 #include "views/widget/widget.h" 13 #include "views/widget/widget.h"
14 14
15 class BrowserFrame; 15 class BrowserFrame;
16 class BrowserView; 16 class BrowserView;
17 class FrameBackground; 17 class FrameBackground;
18 class WindowControlButton; 18 class WindowControlButton;
19 19
20 namespace gfx {
21 class canvas;
22 }
23 namespace views {
24 class CustomButton;
25 }
26
27 class BrowserNonClientFrameViewAura : public BrowserNonClientFrameView, 20 class BrowserNonClientFrameViewAura : public BrowserNonClientFrameView,
28 public views::ButtonListener, 21 public views::ButtonListener,
29 public views::Widget::Observer, 22 public views::Widget::Observer,
30 public aura_shell::WindowFrame { 23 public aura_shell::WindowFrame {
31 public: 24 public:
32 BrowserNonClientFrameViewAura(BrowserFrame* frame, BrowserView* browser_view); 25 BrowserNonClientFrameViewAura(BrowserFrame* frame, BrowserView* browser_view);
33 virtual ~BrowserNonClientFrameViewAura(); 26 virtual ~BrowserNonClientFrameViewAura();
34 27
35 // Control the slide-in animation of the frame background. 28 // Control the slide-in animation of the frame background.
36 void ShowFrameBackground(); 29 void ShowFrameBackground();
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 83
91 int last_hittest_code_; 84 int last_hittest_code_;
92 WindowControlButton* maximize_button_; 85 WindowControlButton* maximize_button_;
93 WindowControlButton* close_button_; 86 WindowControlButton* close_button_;
94 FrameBackground* frame_background_; 87 FrameBackground* frame_background_;
95 88
96 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAura); 89 DISALLOW_COPY_AND_ASSIGN(BrowserNonClientFrameViewAura);
97 }; 90 };
98 91
99 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_ 92 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_NON_CLIENT_FRAME_VIEW_AURA_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_frame_gtk.h ('k') | chrome/browser/ui/views/frame/browser_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698