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

Side by Side Diff: blimp/client/app/linux/blimp_display_manager.h

Issue 2274323002: Expose Blimp dependencies to the embedder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@khushal_baseline_1
Patch Set: Addressed Khushal's initial comments Created 4 years, 4 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_ 5 #ifndef BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_
6 #define BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_ 6 #define BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 float device_pixel_ratio) override; 51 float device_pixel_ratio) override;
52 void OnAcceleratedWidgetDestroyed() override; 52 void OnAcceleratedWidgetDestroyed() override;
53 void OnActivationChanged(bool active) override {} 53 void OnActivationChanged(bool active) override {}
54 54
55 private: 55 private:
56 float device_pixel_ratio_; 56 float device_pixel_ratio_;
57 57
58 BlimpDisplayManagerDelegate* delegate_; 58 BlimpDisplayManagerDelegate* delegate_;
59 TabControlFeature* tab_control_feature_; 59 TabControlFeature* tab_control_feature_;
60 60
61 std::unique_ptr<BlimpCompositorDependencies> compositor_dependencies_;
62 std::unique_ptr<BlimpCompositorManager> compositor_manager_;
61 std::unique_ptr<BrowserCompositor> compositor_; 63 std::unique_ptr<BrowserCompositor> compositor_;
62
63 std::unique_ptr<BlimpCompositorManager> blimp_compositor_manager_;
64 std::unique_ptr<ui::PlatformWindow> platform_window_; 64 std::unique_ptr<ui::PlatformWindow> platform_window_;
65 65
66 DISALLOW_COPY_AND_ASSIGN(BlimpDisplayManager); 66 DISALLOW_COPY_AND_ASSIGN(BlimpDisplayManager);
67 }; 67 };
68 68
69 } // namespace client 69 } // namespace client
70 } // namespace blimp 70 } // namespace blimp
71 71
72 #endif // BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_ 72 #endif // BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698