| 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 |
| 11 #include <deque> |
| 11 #include <map> | 12 #include <map> |
| 12 #include <memory> | 13 #include <memory> |
| 14 #include <set> |
| 13 #include <string> | 15 #include <string> |
| 14 #include <vector> | 16 #include <vector> |
| 15 | 17 |
| 16 #include "base/files/file_path.h" | 18 #include "base/files/file_path.h" |
| 17 #include "base/gtest_prod_util.h" | 19 #include "base/gtest_prod_util.h" |
| 18 #include "base/id_map.h" | 20 #include "base/id_map.h" |
| 19 #include "base/macros.h" | 21 #include "base/macros.h" |
| 20 #include "base/memory/linked_ptr.h" | 22 #include "base/memory/linked_ptr.h" |
| 21 #include "base/memory/ref_counted.h" | 23 #include "base/memory/ref_counted.h" |
| 22 #include "base/memory/weak_ptr.h" | 24 #include "base/memory/weak_ptr.h" |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 namespace media { | 104 namespace media { |
| 103 class CdmFactory; | 105 class CdmFactory; |
| 104 class DecoderFactory; | 106 class DecoderFactory; |
| 105 class MediaPermission; | 107 class MediaPermission; |
| 106 class MediaServiceProvider; | 108 class MediaServiceProvider; |
| 107 class RemotingController; | 109 class RemotingController; |
| 108 class RendererWebMediaPlayerDelegate; | 110 class RendererWebMediaPlayerDelegate; |
| 109 class SurfaceManager; | 111 class SurfaceManager; |
| 110 class UrlIndex; | 112 class UrlIndex; |
| 111 class WebEncryptedMediaClientImpl; | 113 class WebEncryptedMediaClientImpl; |
| 112 } | 114 } // namespace media |
| 113 | 115 |
| 114 namespace service_manager { | 116 namespace service_manager { |
| 115 class InterfaceRegistry; | 117 class InterfaceRegistry; |
| 116 class InterfaceProvider; | 118 class InterfaceProvider; |
| 117 } | 119 } |
| 118 | 120 |
| 119 namespace url { | 121 namespace url { |
| 120 class Origin; | 122 class Origin; |
| 121 } | 123 } |
| 122 | 124 |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 const gfx::Range& replacement_range, | 383 const gfx::Range& replacement_range, |
| 382 int relative_cursor_pos); | 384 int relative_cursor_pos); |
| 383 void OnImeFinishComposingText(bool keep_selection); | 385 void OnImeFinishComposingText(bool keep_selection); |
| 384 | 386 |
| 385 #endif // defined(ENABLE_PLUGINS) | 387 #endif // defined(ENABLE_PLUGINS) |
| 386 | 388 |
| 387 // May return NULL in some cases, especially if userMediaClient() returns | 389 // May return NULL in some cases, especially if userMediaClient() returns |
| 388 // NULL. | 390 // NULL. |
| 389 MediaStreamDispatcher* GetMediaStreamDispatcher(); | 391 MediaStreamDispatcher* GetMediaStreamDispatcher(); |
| 390 | 392 |
| 393 void ScriptedPrint(bool user_initiated); |
| 394 |
| 391 #if defined(USE_EXTERNAL_POPUP_MENU) | 395 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 392 void DidHideExternalPopupMenu(); | 396 void DidHideExternalPopupMenu(); |
| 393 #endif | 397 #endif |
| 394 | 398 |
| 395 // IPC::Sender | 399 // IPC::Sender |
| 396 bool Send(IPC::Message* msg) override; | 400 bool Send(IPC::Message* msg) override; |
| 397 | 401 |
| 398 // IPC::Listener | 402 // IPC::Listener |
| 399 bool OnMessageReceived(const IPC::Message& msg) override; | 403 bool OnMessageReceived(const IPC::Message& msg) override; |
| 400 void OnAssociatedInterfaceRequest( | 404 void OnAssociatedInterfaceRequest( |
| (...skipping 940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1341 bool browser_side_navigation_pending_ = false; | 1345 bool browser_side_navigation_pending_ = false; |
| 1342 | 1346 |
| 1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1347 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1344 | 1348 |
| 1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1349 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1346 }; | 1350 }; |
| 1347 | 1351 |
| 1348 } // namespace content | 1352 } // namespace content |
| 1349 | 1353 |
| 1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1354 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |