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

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

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 #include "chrome/browser/chromeos/webui/login/frame/dom_browser_frame_view.h"
6
7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/browser/tabs/tab_strip_model.h"
9 #include "chrome/browser/ui/browser.h"
10 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
11 #include "chrome/browser/ui/touch/frame/keyboard_container_view.h"
12 #include "chrome/browser/ui/views/frame/browser_view.h"
13 #include "views/window/window.h"
oshima 2011/03/16 21:10:25 Can you eliminate includes that are not necessary?
rharrison 2011/03/17 17:00:50 Done.
14
15 namespace chromeos {
16
17 // DOMBrowserFrameView, public:
Nikita (slow) 2011/03/16 21:33:45 // ... ------
rharrison 2011/03/17 17:00:50 Done.
18
19 DOMBrowserFrameView::DOMBrowserFrameView(BrowserFrame* frame,
20 BrowserView* browser_view)
21 : TouchBrowserFrameView(frame, browser_view) {
22 }
23
24 DOMBrowserFrameView::~DOMBrowserFrameView() {
25 }
26
27 // static
28 BrowserNonClientFrameView* DOMBrowserFrameView::CreateBrowserNonClientFrameView(
29 BrowserFrame* frame, BrowserView* browser_view) {
30 return new DOMBrowserFrameView(frame, browser_view);
31 }
32
33 // DOMBrowserFrameView, protected:
Nikita (slow) 2011/03/16 21:33:45 // ... ------
rharrison 2011/03/17 17:00:50 Done.
34
35 gfx::Rect DOMBrowserFrameView::GetBoundsForTabStrip(views::View* tabstrip)
36 const {
37 return gfx::Rect(0, 0, 0, 0);
oshima 2011/03/16 21:10:25 just gfx::Rect() (note to myself too)
rharrison 2011/03/17 17:00:50 Done.
38 }
39
40 void DOMBrowserFrameView::LayoutOTRAvatar() {
41 }
42
43 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698