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

Side by Side Diff: extensions/shell/browser/shell_native_app_window.h

Issue 1908953003: Convert //extensions/{common,shell} from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase? Created 4 years, 8 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_ 5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_
6 #define EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_ 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "extensions/browser/app_window/app_window.h" 9 #include "extensions/browser/app_window/app_window.h"
10 #include "extensions/browser/app_window/native_app_window.h" 10 #include "extensions/browser/app_window/native_app_window.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 gfx::Size GetMaximumDialogSize() override; 45 gfx::Size GetMaximumDialogSize() override;
46 46
47 // NativeAppWindow overrides: 47 // NativeAppWindow overrides:
48 void SetFullscreen(int fullscreen_types) override; 48 void SetFullscreen(int fullscreen_types) override;
49 bool IsFullscreenOrPending() const override; 49 bool IsFullscreenOrPending() const override;
50 void UpdateWindowIcon() override; 50 void UpdateWindowIcon() override;
51 void UpdateWindowTitle() override; 51 void UpdateWindowTitle() override;
52 void UpdateDraggableRegions( 52 void UpdateDraggableRegions(
53 const std::vector<DraggableRegion>& regions) override; 53 const std::vector<DraggableRegion>& regions) override;
54 SkRegion* GetDraggableRegion() override; 54 SkRegion* GetDraggableRegion() override;
55 void UpdateShape(scoped_ptr<SkRegion> region) override; 55 void UpdateShape(std::unique_ptr<SkRegion> region) override;
56 void HandleKeyboardEvent( 56 void HandleKeyboardEvent(
57 const content::NativeWebKeyboardEvent& event) override; 57 const content::NativeWebKeyboardEvent& event) override;
58 bool IsFrameless() const override; 58 bool IsFrameless() const override;
59 bool HasFrameColor() const override; 59 bool HasFrameColor() const override;
60 SkColor ActiveFrameColor() const override; 60 SkColor ActiveFrameColor() const override;
61 SkColor InactiveFrameColor() const override; 61 SkColor InactiveFrameColor() const override;
62 gfx::Insets GetFrameInsets() const override; 62 gfx::Insets GetFrameInsets() const override;
63 void ShowWithApp() override; 63 void ShowWithApp() override;
64 void HideWithApp() override; 64 void HideWithApp() override;
65 gfx::Size GetContentMinimumSize() const override; 65 gfx::Size GetContentMinimumSize() const override;
66 gfx::Size GetContentMaximumSize() const override; 66 gfx::Size GetContentMaximumSize() const override;
67 void SetContentSizeConstraints(const gfx::Size& min_size, 67 void SetContentSizeConstraints(const gfx::Size& min_size,
68 const gfx::Size& max_size) override; 68 const gfx::Size& max_size) override;
69 void SetVisibleOnAllWorkspaces(bool always_visible) override; 69 void SetVisibleOnAllWorkspaces(bool always_visible) override;
70 bool CanHaveAlphaEnabled() const override; 70 bool CanHaveAlphaEnabled() const override;
71 71
72 private: 72 private:
73 AppWindow* app_window_; 73 AppWindow* app_window_;
74 74
75 DISALLOW_COPY_AND_ASSIGN(ShellNativeAppWindow); 75 DISALLOW_COPY_AND_ASSIGN(ShellNativeAppWindow);
76 }; 76 };
77 77
78 } // namespace extensions 78 } // namespace extensions
79 79
80 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_ 80 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_NATIVE_APP_WINDOW_H_
OLDNEW
« no previous file with comments | « extensions/shell/browser/shell_extension_system.cc ('k') | extensions/shell/browser/shell_native_app_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698