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

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

Issue 2201433002: Migrate TabControlFeature from 0.5 to 0.6 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove BlmipContentImpl default constructor, Move BlimpContentsDeletionObserver declaration to blim… 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 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"
(...skipping 13 matching lines...) Expand all
24 #endif // defined(OS_ANDROID) 24 #endif // defined(OS_ANDROID)
25 25
26 class BlimpContentsObserver; 26 class BlimpContentsObserver;
27 class BlimpNavigationController; 27 class BlimpNavigationController;
28 28
29 // BlimpContentsImpl is the implementation of the core class in 29 // BlimpContentsImpl is the implementation of the core class in
30 // //blimp/client/core, the BlimpContents. 30 // //blimp/client/core, the BlimpContents.
31 class BlimpContentsImpl : public BlimpContents, 31 class BlimpContentsImpl : public BlimpContents,
32 public BlimpNavigationControllerDelegate { 32 public BlimpNavigationControllerDelegate {
33 public: 33 public:
34 BlimpContentsImpl(); 34 explicit BlimpContentsImpl(int id);
35 ~BlimpContentsImpl() override; 35 ~BlimpContentsImpl() override;
36 36
37 #if defined(OS_ANDROID) 37 #if defined(OS_ANDROID)
38 base::android::ScopedJavaLocalRef<jobject> GetJavaBlimpContentsImpl(); 38 base::android::ScopedJavaLocalRef<jobject> GetJavaBlimpContentsImpl();
39 BlimpContentsImplAndroid* GetBlimpContentsImplAndroid(); 39 BlimpContentsImplAndroid* GetBlimpContentsImplAndroid();
40 #endif // defined(OS_ANDROID) 40 #endif // defined(OS_ANDROID)
41 41
42 // BlimpContents implementation. 42 // BlimpContents implementation.
43 BlimpNavigationControllerImpl& GetNavigationController() override; 43 BlimpNavigationControllerImpl& GetNavigationController() override;
44 void AddObserver(BlimpContentsObserver* observer) override; 44 void AddObserver(BlimpContentsObserver* observer) override;
45 void RemoveObserver(BlimpContentsObserver* observer) override; 45 void RemoveObserver(BlimpContentsObserver* observer) override;
46 46
47 // BlimpNavigationControllerDelegate implementation. 47 // BlimpNavigationControllerDelegate implementation.
48 void NotifyURLLoaded(const GURL& url) override; 48 void NotifyURLLoaded(const GURL& url) override;
49 49
50 int id() { return id_; }
51
50 private: 52 private:
51 // Handles the back/forward list and loading URLs. 53 // Handles the back/forward list and loading URLs.
52 BlimpNavigationControllerImpl navigation_controller_; 54 BlimpNavigationControllerImpl navigation_controller_;
53 55
54 // A list of all the observers of this BlimpContentsImpl. 56 // A list of all the observers of this BlimpContentsImpl.
55 base::ObserverList<BlimpContentsObserver> observers_; 57 base::ObserverList<BlimpContentsObserver> observers_;
56 58
57 DISALLOW_COPY_AND_ASSIGN(BlimpContentsImpl); 59 int id_;
60
61 DISALLOW_IMPLICIT_CONSTRUCTORS(BlimpContentsImpl);
58 }; 62 };
59 63
60 } // namespace client 64 } // namespace client
61 } // namespace blimp 65 } // namespace blimp
62 66
63 #endif // BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_ 67 #endif // BLIMP_CLIENT_CORE_CONTENTS_BLIMP_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698