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

Side by Side Diff: chrome/browser/chromeos/webui/login/frame/dom_browser_frame_view.h

Issue 6692001: Add in DOMBrowserView and Frame related classes (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Updated CL in response to comments by oshima and rjkroege Created 9 years, 9 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_FRAME_DOM_BROWSER_FRAME_VIEW_H_
6 #define CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_FRAME_DOM_BROWSER_FRAME_VIEW_H_
7 #pragma once
8
9 #include "chrome/browser/ui/touch/frame/touch_browser_frame_view.h"
10
11 namespace chromeos {
12
13 class DOMBrowserFrameView: public TouchBrowserFrameView {
14 public:
15 // Constructs a non-client view for an BrowserFrame.
16 DOMBrowserFrameView(BrowserFrame* frame, BrowserView* browser_view);
17 virtual ~DOMBrowserFrameView();
18
19 static BrowserNonClientFrameView* CreateBrowserNonClientFrameView(
20 BrowserFrame* frame,
21 BrowserView* browser_view);
22
oshima 2011/03/16 21:10:25 // TouchBrowserFrameView overrides.
rharrison 2011/03/17 17:00:50 Done.
23 virtual gfx::Rect GetBoundsForTabStrip(views::View* tabstrip) const;
oshima 2011/03/16 21:10:25 OVERRIDE
rharrison 2011/03/17 17:00:50 Done.
24
25 protected:
26 virtual void LayoutOTRAvatar();
oshima 2011/03/16 21:10:25 OVERRIDE
rharrison 2011/03/17 17:00:50 Done.
27
28 private:
29 DISALLOW_COPY_AND_ASSIGN(DOMBrowserFrameView);
30 };
oshima 2011/03/16 21:10:25 new line between class and namespace
rharrison 2011/03/17 17:00:50 Done.
31 } // namespace chromeos
32
33 #endif // CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_FRAME_DOM_BROWSER_FRAME_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698