| OLD | NEW |
| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 void FilesSelectedInChooser(const std::vector<FileChooserFileInfo>& files, | 180 void FilesSelectedInChooser(const std::vector<FileChooserFileInfo>& files, |
| 181 FileChooserParams::Mode permissions) override; | 181 FileChooserParams::Mode permissions) override; |
| 182 bool HasSelection() override; | 182 bool HasSelection() override; |
| 183 void RequestTextSurroundingSelection( | 183 void RequestTextSurroundingSelection( |
| 184 const TextSurroundingSelectionCallback& callback, | 184 const TextSurroundingSelectionCallback& callback, |
| 185 int max_length) override; | 185 int max_length) override; |
| 186 void AllowBindings(int binding_flags) override; | 186 void AllowBindings(int binding_flags) override; |
| 187 int GetEnabledBindings() const override; | 187 int GetEnabledBindings() const override; |
| 188 void BlockRequestsForFrame() override; | 188 void BlockRequestsForFrame() override; |
| 189 void ResumeBlockedRequestsForFrame() override; | 189 void ResumeBlockedRequestsForFrame() override; |
| 190 void DisableBeforeUnloadHangMonitorForTesting() override; |
| 190 | 191 |
| 191 // mojom::FrameHost | 192 // mojom::FrameHost |
| 192 void GetInterfaceProvider( | 193 void GetInterfaceProvider( |
| 193 service_manager::mojom::InterfaceProviderRequest interfaces) override; | 194 service_manager::mojom::InterfaceProviderRequest interfaces) override; |
| 194 | 195 |
| 195 // IPC::Sender | 196 // IPC::Sender |
| 196 bool Send(IPC::Message* msg) override; | 197 bool Send(IPC::Message* msg) override; |
| 197 | 198 |
| 198 // IPC::Listener | 199 // IPC::Listener |
| 199 bool OnMessageReceived(const IPC::Message& msg) override; | 200 bool OnMessageReceived(const IPC::Message& msg) override; |
| (...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1171 | 1172 |
| 1172 // NOTE: This must be the last member. | 1173 // NOTE: This must be the last member. |
| 1173 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1174 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1174 | 1175 |
| 1175 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1176 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1176 }; | 1177 }; |
| 1177 | 1178 |
| 1178 } // namespace content | 1179 } // namespace content |
| 1179 | 1180 |
| 1180 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1181 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |