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

Unified Diff: chrome/browser/chromeos/frame/dom_browser.cc

Issue 6973029: Integrate WebUI Login with cros. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed patch staleness Created 9 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/chromeos/frame/dom_browser.h ('k') | chrome/browser/chromeos/frame/dom_browser_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/frame/dom_browser.cc
diff --git a/chrome/browser/chromeos/frame/dom_browser.cc b/chrome/browser/chromeos/frame/dom_browser.cc
deleted file mode 100644
index 6c9a4ff1a7f9b9ff68b431e781d63bb4f1a00f97..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/frame/dom_browser.cc
+++ /dev/null
@@ -1,32 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/chromeos/frame/dom_browser.h"
-
-#include "chrome/browser/chromeos/frame/dom_browser_view.h"
-#include "chrome/browser/ui/browser_window.h"
-
-namespace chromeos {
-
-// DOMBrowser: public ----------------------------------------------------------
-
-DOMBrowser::DOMBrowser(Profile* profile)
- : Browser(Browser::TYPE_TABBED, profile) {
-}
-
-DOMBrowser::~DOMBrowser() {
-}
-
-// static
-DOMBrowser* DOMBrowser::CreateForDOM(Profile* profile) {
- DOMBrowser* browser = new DOMBrowser(profile);
- browser->InitBrowserWindow();
- return browser;
-}
-
-BrowserWindow* DOMBrowser::CreateBrowserWindow() {
- return DOMBrowserView::CreateDOMWindow(this);
-}
-
-} // namespace chromeos
« no previous file with comments | « chrome/browser/chromeos/frame/dom_browser.h ('k') | chrome/browser/chromeos/frame/dom_browser_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698