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

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

Issue 6204002: Carnitas: Remove chrome/browser/views, update references. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Yay, more syncing Created 9 years, 11 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
OLDNEW
1 // Copyright (c) 2010 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_POPUP_NON_CLIENT_FRAME_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/views/frame/browser_non_client_frame_view.h" 9 #include "chrome/browser/ui/views/frame/browser_non_client_frame_view.h"
10 10
11 class BaseTabStrip; 11 class BaseTabStrip;
12 12
13 // BrowserNonClientFrameView implementation for popups. We let the window 13 // BrowserNonClientFrameView implementation for popups. We let the window
14 // manager implementation render the decorations for popups, so this draws 14 // manager implementation render the decorations for popups, so this draws
15 // nothing. 15 // nothing.
16 class PopupNonClientFrameView : public BrowserNonClientFrameView { 16 class PopupNonClientFrameView : public BrowserNonClientFrameView {
17 public: 17 public:
18 PopupNonClientFrameView() {} 18 PopupNonClientFrameView() {}
19 19
(...skipping 11 matching lines...) Expand all
31 // BrowserNonClientFrameView: 31 // BrowserNonClientFrameView:
32 virtual gfx::Rect GetBoundsForTabStrip(BaseTabStrip* tabstrip) const; 32 virtual gfx::Rect GetBoundsForTabStrip(BaseTabStrip* tabstrip) const;
33 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const; 33 virtual int GetHorizontalTabStripVerticalOffset(bool restored) const;
34 virtual void UpdateThrobber(bool running); 34 virtual void UpdateThrobber(bool running);
35 35
36 private: 36 private:
37 DISALLOW_COPY_AND_ASSIGN(PopupNonClientFrameView); 37 DISALLOW_COPY_AND_ASSIGN(PopupNonClientFrameView);
38 }; 38 };
39 39
40 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_ 40 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_POPUP_NON_CLIENT_FRAME_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698