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

Side by Side Diff: ash/host/ash_window_tree_host_win.h

Issue 2611253002: Removes some dead code (Closed)
Patch Set: merge Created 3 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
« no previous file with comments | « ash/host/ash_window_tree_host.cc ('k') | ash/host/ash_window_tree_host_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 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 ASH_HOST_ASH_WINDOW_TREE_HOST_WIN_H_
6 #define ASH_HOST_ASH_WINDOW_TREE_HOST_WIN_H_
7
8 #include "ash/host/ash_window_tree_host_platform.h"
9
10 namespace ash {
11
12 class AshWindowTreeHostWin : public AshWindowTreeHostPlatform {
13 public:
14 explicit AshWindowTreeHostWin(const gfx::Rect& initial_bounds);
15 ~AshWindowTreeHostWin() override;
16
17 private:
18 // AshWindowTreeHost:
19 void ToggleFullScreen() override;
20
21 // WindowTreeHost:
22 void SetBoundsInPixels(const gfx::Rect& bounds) override;
23
24 bool fullscreen_;
25 RECT saved_window_rect_;
26 DWORD saved_window_style_;
27 DWORD saved_window_ex_style_;
28
29 DISALLOW_COPY_AND_ASSIGN(AshWindowTreeHostWin);
30 };
31
32 } // namespace ash
33
34 #endif // ASH_HOST_ASH_WINDOW_TREE_HOST_WIN_H_
OLDNEW
« no previous file with comments | « ash/host/ash_window_tree_host.cc ('k') | ash/host/ash_window_tree_host_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698