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

Side by Side Diff: chrome/browser/ui/extensions/native_shell_frame.h

Issue 9254046: Custom frame UI for platform apps on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 11 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) 2012 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_UI_EXTENSIONS_NATIVE_SHELL_FRAME_H_
6 #define CHROME_BROWSER_UI_EXTENSIONS_NATIVE_SHELL_FRAME_H_
7 #pragma once
8
9 namespace views {
10 class NativeWidget;
Ben Goodger (Google) 2012/01/26 23:03:45 outdent
11 class Widget;
12 }
13
14 class NativeShellFrame {
15 public:
16 virtual ~NativeShellFrame() {}
17
18 // Construct a platform-specific implementation of this interface.
19 static NativeShellFrame* CreateNativeShellFrame(
20 views::Widget* container);
21
22 virtual views::NativeWidget* AsNativeWidget() = 0;
23 virtual const views::NativeWidget* AsNativeWidget() const = 0;
24 };
25
26 #endif // CHROME_BROWSER_UI_EXTENSIONS_NATIVE_SHELL_FRAME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698