~zaspire/oxide/push-messaging

« back to all changes in this revision

Viewing changes to shared/app/oxide_content_main_delegate.h

  • Committer: Chris Coulson
  • Date: 2015-06-12 01:05:21 UTC
  • Revision ID: chris.coulson@canonical.com-20150612010521-88ormpcpvswxaumk
Make ContentBrowserClient / ContentRendererClient memebers of ContentMainDelegate like ContentClient already is

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
namespace oxide {
26
26
 
 
27
class ContentBrowserClient;
27
28
class ContentClient;
 
29
class ContentRendererClient;
28
30
class PlatformDelegate;
29
31
 
30
32
class ContentMainDelegate final : public content::ContentMainDelegate {
45
47
 
46
48
 private:
47
49
  PlatformDelegate* delegate_;
 
50
  scoped_ptr<ContentBrowserClient> content_browser_client_;
 
51
  scoped_ptr<ContentRendererClient> content_renderer_client_;
 
52
  scoped_ptr<content::ContentUtilityClient> content_utility_client_;
48
53
  scoped_ptr<ContentClient> content_client_;
49
54
 
50
55
  DISALLOW_COPY_AND_ASSIGN(ContentMainDelegate);