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

Side by Side Diff: blimp/client/core/contents/blimp_contents_impl.h

Issue 2255533002: Add TabControlFeature to BlimpClientContextImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync to head 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
« no previous file with comments | « blimp/client/core/contents/BUILD.gn ('k') | blimp/client/core/contents/blimp_contents_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 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_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ 5 #ifndef BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_
6 #define BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ 6 #define BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/observer_list.h" 9 #include "base/observer_list.h"
10 #include "blimp/client/core/contents/blimp_navigation_controller_delegate.h" 10 #include "blimp/client/core/contents/blimp_navigation_controller_delegate.h"
11 #include "blimp/client/core/contents/blimp_navigation_controller_impl.h" 11 #include "blimp/client/core/contents/blimp_navigation_controller_impl.h"
12 #include "blimp/client/public/contents/blimp_contents.h" 12 #include "blimp/client/public/contents/blimp_contents.h"
13 #include "ui/gfx/geometry/size.h"
13 #include "url/gurl.h" 14 #include "url/gurl.h"
14 15
15 #if defined(OS_ANDROID) 16 #if defined(OS_ANDROID)
16 #include "base/android/scoped_java_ref.h" 17 #include "base/android/scoped_java_ref.h"
17 #endif // defined(OS_ANDROID) 18 #endif // defined(OS_ANDROID)
18 19
19 namespace blimp { 20 namespace blimp {
20 namespace client { 21 namespace client {
21 22
22 #if defined(OS_ANDROID) 23 #if defined(OS_ANDROID)
23 class BlimpContentsImplAndroid; 24 class BlimpContentsImplAndroid;
24 #endif // defined(OS_ANDROID) 25 #endif // defined(OS_ANDROID)
25 26
26 class BlimpContentsObserver; 27 class BlimpContentsObserver;
27 class BlimpNavigationController; 28 class BlimpNavigationController;
29 class TabControlFeature;
28 30
29 class BlimpContentsImpl : public BlimpContents, 31 class BlimpContentsImpl : public BlimpContents,
30 public BlimpNavigationControllerDelegate { 32 public BlimpNavigationControllerDelegate {
31 public: 33 public:
32 explicit BlimpContentsImpl(int id); 34 explicit BlimpContentsImpl(int id, TabControlFeature* tab_control_feature);
33 ~BlimpContentsImpl() override; 35 ~BlimpContentsImpl() override;
34 36
35 #if defined(OS_ANDROID) 37 #if defined(OS_ANDROID)
36 base::android::ScopedJavaLocalRef<jobject> GetJavaBlimpContentsImpl(); 38 base::android::ScopedJavaLocalRef<jobject> GetJavaBlimpContentsImpl();
37 BlimpContentsImplAndroid* GetBlimpContentsImplAndroid(); 39 BlimpContentsImplAndroid* GetBlimpContentsImplAndroid();
38 #endif // defined(OS_ANDROID) 40 #endif // defined(OS_ANDROID)
39 41
40 // BlimpContents implementation. 42 // BlimpContents implementation.
41 BlimpNavigationControllerImpl& GetNavigationController() override; 43 BlimpNavigationControllerImpl& GetNavigationController() override;
42 void AddObserver(BlimpContentsObserver* observer) override; 44 void AddObserver(BlimpContentsObserver* observer) override;
43 void RemoveObserver(BlimpContentsObserver* observer) override; 45 void RemoveObserver(BlimpContentsObserver* observer) override;
44 46
45 // Check if some observer is in the observer list. 47 // Check if some observer is in the observer list.
46 bool HasObserver(BlimpContentsObserver* observer); 48 bool HasObserver(BlimpContentsObserver* observer);
47 49
48 // BlimpNavigationControllerDelegate implementation. 50 // BlimpNavigationControllerDelegate implementation.
49 void OnNavigationStateChanged() override; 51 void OnNavigationStateChanged() override;
50 52
53 // Pushes the size and scale information to the engine, which will affect the
54 // web content display area for all tabs.
55 void SetSizeAndScale(const gfx::Size& size, float device_pixel_ratio);
56
51 int id() { return id_; } 57 int id() { return id_; }
52 58
53 private: 59 private:
54 // Handles the back/forward list and loading URLs. 60 // Handles the back/forward list and loading URLs.
55 BlimpNavigationControllerImpl navigation_controller_; 61 BlimpNavigationControllerImpl navigation_controller_;
56 62
57 // A list of all the observers of this BlimpContentsImpl. 63 // A list of all the observers of this BlimpContentsImpl.
58 base::ObserverList<BlimpContentsObserver> observers_; 64 base::ObserverList<BlimpContentsObserver> observers_;
59 65
60 // The id is assigned during contents creation. It is used by 66 // The id is assigned during contents creation. It is used by
61 // BlimpContentsManager to control the life time of the its observer. 67 // BlimpContentsManager to control the life time of the its observer.
62 int id_; 68 int id_;
63 69
70 // The tab control feature through which the BlimpContentsImpl is able to
71 // set size and scale.
72 // TODO(mlliu): in the long term, we want to put size and scale in a different
73 // feature instead of tab control feature. crbug.com/639154.
74 TabControlFeature* tab_control_feature_ = nullptr;
75
64 DISALLOW_COPY_AND_ASSIGN(BlimpContentsImpl); 76 DISALLOW_COPY_AND_ASSIGN(BlimpContentsImpl);
65 }; 77 };
66 78
67 } // namespace client 79 } // namespace client
68 } // namespace blimp 80 } // namespace blimp
69 81
70 #endif // BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ 82 #endif // BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « blimp/client/core/contents/BUILD.gn ('k') | blimp/client/core/contents/blimp_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698