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

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

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 | « no previous file | chrome/browser/chromeos/frame/dom_browser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/frame/dom_browser.h
diff --git a/chrome/browser/chromeos/frame/dom_browser.h b/chrome/browser/chromeos/frame/dom_browser.h
deleted file mode 100644
index b015b031723dca5b5f1ad6dadf83a79dad0248ee..0000000000000000000000000000000000000000
--- a/chrome/browser/chromeos/frame/dom_browser.h
+++ /dev/null
@@ -1,39 +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.
-
-#ifndef CHROME_BROWSER_CHROMEOS_FRAME_DOM_BROWSER_H_
-#define CHROME_BROWSER_CHROMEOS_FRAME_DOM_BROWSER_H_
-#pragma once
-
-#include "base/basictypes.h"
-#include "chrome/browser/ui/browser.h"
-
-class Profile;
-
-namespace chromeos {
-
-// DOMBrowser is an alternate implementation of Browser that is used to display
-// DOM login screens. These screens in addition to having a webpage in a DOMView
-// also display the Status Area and the touch enabled keyboard.
-// TODO(rharrison): Add support for OOBE and screen lock DOM screens.
-class DOMBrowser : public Browser {
- public:
- explicit DOMBrowser(Profile* profile);
- virtual ~DOMBrowser();
-
- // This is a factory method for creating a DOMBrowser. It is based off of the
- // CreateFor* methods from the Browser class.
- static DOMBrowser* CreateForDOM(Profile* profile);
-
- protected:
- // Creates Window for DOMBrowser.
- virtual BrowserWindow* CreateBrowserWindow();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(DOMBrowser);
-};
-
-} // namespace chromeos
-
-#endif // CHROME_BROWSER_CHROMEOS_FRAME_DOM_BROWSER_H_
« no previous file with comments | « no previous file | chrome/browser/chromeos/frame/dom_browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698