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

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: 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 "chrome/browser/chromeos/frame/browser_frame_chromeos.h"
10
11 namespace chromeos {
12 class DOMBrowserView;
13
14 class DOMBrowserFrame : public BrowserFrameChromeos {
oshima 2011/03/14 20:09:22 please add comment
rharrison 2011/03/15 22:01:21 Done.
15 public:
16 DOMBrowserFrame(DOMBrowserView* browser_view, Profile* profile);
17 virtual ~DOMBrowserFrame();
18
19 static BrowserFrame* Create(DOMBrowserView* browser_view,
20 Profile* profile);
21
22 protected:
oshima 2011/03/14 20:09:22 // BrowserFrameChromeos overrides: (or whatever th
rharrison 2011/03/15 22:01:21 Done.
23 virtual BrowserNonClientFrameView* CreateBrowserNonClientFrameView();
24
25 private:
26 DISALLOW_COPY_AND_ASSIGN(DOMBrowserFrame);
27 };
28
29 } // namespace chroemos
30
31 #endif // CHROME_BROWSER_CHROMEOS_WEBUI_LOGIN_FRAME_DOM_BROWSER_FRAME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698