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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 2119973002: Port WebSockets to Mojo IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix shared worker support 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 class WebBluetoothServiceImpl; 92 class WebBluetoothServiceImpl;
93 struct ContentSecurityPolicyHeader; 93 struct ContentSecurityPolicyHeader;
94 struct ContextMenuParams; 94 struct ContextMenuParams;
95 struct FileChooserParams; 95 struct FileChooserParams;
96 struct FrameOwnerProperties; 96 struct FrameOwnerProperties;
97 struct GlobalRequestID; 97 struct GlobalRequestID;
98 struct FileChooserParams; 98 struct FileChooserParams;
99 struct Referrer; 99 struct Referrer;
100 struct ResourceResponse; 100 struct ResourceResponse;
101 101
102 namespace mojom {
103 class WebSocket;
jam 2016/08/04 18:10:43 nit: not needed
104 }
105
102 class CONTENT_EXPORT RenderFrameHostImpl 106 class CONTENT_EXPORT RenderFrameHostImpl
103 : public RenderFrameHost, 107 : public RenderFrameHost,
104 NON_EXPORTED_BASE(public mojom::FrameHost), 108 NON_EXPORTED_BASE(public mojom::FrameHost),
105 public BrowserAccessibilityDelegate, 109 public BrowserAccessibilityDelegate,
106 public SiteInstanceImpl::Observer { 110 public SiteInstanceImpl::Observer {
107 public: 111 public:
108 using AXTreeSnapshotCallback = 112 using AXTreeSnapshotCallback =
109 base::Callback<void( 113 base::Callback<void(
110 const ui::AXTreeUpdate&)>; 114 const ui::AXTreeUpdate&)>;
111 115
(...skipping 935 matching lines...) Expand 10 before | Expand all | Expand 10 after
1047 1051
1048 // NOTE: This must be the last member. 1052 // NOTE: This must be the last member.
1049 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 1053 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
1050 1054
1051 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 1055 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
1052 }; 1056 };
1053 1057
1054 } // namespace content 1058 } // namespace content
1055 1059
1056 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 1060 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698