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

Unified Diff: chrome/browser/chromeos/login/lock_window_aura.h

Issue 8711003: Enable WebUI ScreenLocker for aura by abstracting lock window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make virtual constructors private and fix order of lock window initialization. Created 9 years, 1 month 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
Index: chrome/browser/chromeos/login/lock_window_aura.h
diff --git a/chrome/browser/chromeos/login/lock_window_aura.h b/chrome/browser/chromeos/login/lock_window_aura.h
new file mode 100644
index 0000000000000000000000000000000000000000..23542704fd8f47bc7274a13f588780605b8728bb
--- /dev/null
+++ b/chrome/browser/chromeos/login/lock_window_aura.h
@@ -0,0 +1,35 @@
+// 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_LOGIN_LOCK_WINDOW_AURA_H_
+#define CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WINDOW_AURA_H_
+#pragma once
+
+#include <cstddef>
oshima 2011/11/29 20:18:06 do we need this here?
flackr 2011/11/30 20:16:54 This include was for NULL. Not needed here.
+
oshima 2011/11/29 20:18:06 base/compiler_specific.h (for iwyu)
flackr 2011/11/30 20:16:54 Done.
+#include "chrome/browser/chromeos/login/lock_window.h"
+#include "ui/views/widget/widget.h"
+
+namespace chromeos {
+
+class LockWindowAura : public views::Widget,
+ public LockWindow {
oshima 2011/11/29 20:18:06 When we need different impl for different platform
flackr 2011/11/30 20:16:54 I'm not exactly sure what you mean. Do you mean to
oshima 2011/11/30 23:41:07 I was thinking something like LockWindow being jus
flackr 2011/12/01 21:40:40 To do this I will likely have to introduce "if def
oshima 2011/12/01 22:45:35 It it doesn't help, then I'm fine with current app
+ public:
+ LockWindowAura();
oshima 2011/11/29 20:18:06 move this to private and add friend to LockWindow.
flackr 2011/11/30 20:16:54 Done.
+
+ // LockWindow implementation:
+ virtual void SetContentsView(views::View* content) OVERRIDE;
+ virtual void Show(DOMView* dom_view) OVERRIDE;
+ virtual views::Widget* GetWidget() OVERRIDE;
+
+ private:
+ virtual ~LockWindowAura() {}
oshima 2011/11/29 20:18:06 move to .cc
flackr 2011/11/30 20:16:54 Done.
+
+ // Initialize the Aura lock window.
+ void Init();
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOCK_WINDOW_AURA_H_

Powered by Google App Engine
This is Rietveld 408576698