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

Side by Side Diff: chrome/browser/chromeos/webui/login/frame/dom_browser_frame.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 nkostylev 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_H_
6 #define CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_FRAME_DOM_BROWSER_FRAME_H_
7 #pragma once
8
9 #include "base/compiler_specific.h"
10 #include "chrome/browser/chromeos/frame/browser_frame_chromeos.h"
11
12 namespace chromeos {
13
14 class DOMBrowserView;
15
16 // DOMBrowserFrame sublasses the standard BrowserFrame used in chromeos,
17 // BrowserFrameChromeos, so that we can hook in out DOM specific Views for the
18 // frame. This allows us the ability to omit the parts of the decoration that
19 // are no desired in in the DOMBrowser.
20 class DOMBrowserFrame : public BrowserFrameChromeos {
21 public:
22 DOMBrowserFrame(DOMBrowserView* browser_view, Profile* profile);
23 virtual ~DOMBrowserFrame();
24
25 static BrowserFrame* Create(DOMBrowserView* browser_view,
26 Profile* profile);
27
28 protected:
29 // BrowserFrameChromeos overrides:
30 virtual BrowserNonClientFrameView* CreateBrowserNonClientFrameView() OVERRIDE;
31
32 private:
33 DISALLOW_COPY_AND_ASSIGN(DOMBrowserFrame);
34 };
35
36 } // namespace chroemos
oshima 2011/03/17 18:49:31 chromeos
37
38 #endif // CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_FRAME_DOM_BROWSER_FRAME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698