| 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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 const gfx::Range& replacement_range, | 373 const gfx::Range& replacement_range, |
| 374 int relative_cursor_pos); | 374 int relative_cursor_pos); |
| 375 void OnImeFinishComposingText(bool keep_selection); | 375 void OnImeFinishComposingText(bool keep_selection); |
| 376 | 376 |
| 377 #endif // defined(ENABLE_PLUGINS) | 377 #endif // defined(ENABLE_PLUGINS) |
| 378 | 378 |
| 379 // May return NULL in some cases, especially if userMediaClient() returns | 379 // May return NULL in some cases, especially if userMediaClient() returns |
| 380 // NULL. | 380 // NULL. |
| 381 MediaStreamDispatcher* GetMediaStreamDispatcher(); | 381 MediaStreamDispatcher* GetMediaStreamDispatcher(); |
| 382 | 382 |
| 383 void ScriptedPrint(bool user_initiated); | |
| 384 | |
| 385 #if defined(USE_EXTERNAL_POPUP_MENU) | 383 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 386 void DidHideExternalPopupMenu(); | 384 void DidHideExternalPopupMenu(); |
| 387 #endif | 385 #endif |
| 388 | 386 |
| 389 // IPC::Sender | 387 // IPC::Sender |
| 390 bool Send(IPC::Message* msg) override; | 388 bool Send(IPC::Message* msg) override; |
| 391 | 389 |
| 392 // IPC::Listener | 390 // IPC::Listener |
| 393 bool OnMessageReceived(const IPC::Message& msg) override; | 391 bool OnMessageReceived(const IPC::Message& msg) override; |
| 394 void OnAssociatedInterfaceRequest( | 392 void OnAssociatedInterfaceRequest( |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 bool browser_side_navigation_pending_ = false; | 1339 bool browser_side_navigation_pending_ = false; |
| 1342 | 1340 |
| 1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1341 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1344 | 1342 |
| 1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1343 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1346 }; | 1344 }; |
| 1347 | 1345 |
| 1348 } // namespace content | 1346 } // namespace content |
| 1349 | 1347 |
| 1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1348 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |