| 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> |
| 12 #include <map> |
| 11 #include <memory> | 13 #include <memory> |
| 14 #include <set> |
| 12 #include <string> | 15 #include <string> |
| 13 #include <vector> | 16 #include <vector> |
| 14 | 17 |
| 15 #include "base/files/file_path.h" | 18 #include "base/files/file_path.h" |
| 16 #include "base/gtest_prod_util.h" | 19 #include "base/gtest_prod_util.h" |
| 17 #include "base/id_map.h" | 20 #include "base/id_map.h" |
| 18 #include "base/macros.h" | 21 #include "base/macros.h" |
| 19 #include "base/memory/linked_ptr.h" | 22 #include "base/memory/linked_ptr.h" |
| 20 #include "base/memory/ref_counted.h" | 23 #include "base/memory/ref_counted.h" |
| 21 #include "base/memory/weak_ptr.h" | 24 #include "base/memory/weak_ptr.h" |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 namespace media { | 107 namespace media { |
| 105 class CdmFactory; | 108 class CdmFactory; |
| 106 class DecoderFactory; | 109 class DecoderFactory; |
| 107 class MediaPermission; | 110 class MediaPermission; |
| 108 class MediaServiceProvider; | 111 class MediaServiceProvider; |
| 109 class RemotingController; | 112 class RemotingController; |
| 110 class RendererWebMediaPlayerDelegate; | 113 class RendererWebMediaPlayerDelegate; |
| 111 class SurfaceManager; | 114 class SurfaceManager; |
| 112 class UrlIndex; | 115 class UrlIndex; |
| 113 class WebEncryptedMediaClientImpl; | 116 class WebEncryptedMediaClientImpl; |
| 114 } | 117 } // namespace media |
| 115 | 118 |
| 116 namespace shell { | 119 namespace shell { |
| 117 class InterfaceRegistry; | 120 class InterfaceRegistry; |
| 118 class InterfaceProvider; | 121 class InterfaceProvider; |
| 119 } | 122 } |
| 120 | 123 |
| 121 namespace url { | 124 namespace url { |
| 122 class Origin; | 125 class Origin; |
| 123 } | 126 } |
| 124 | 127 |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 const gfx::Range& replacement_range, | 385 const gfx::Range& replacement_range, |
| 383 int relative_cursor_pos); | 386 int relative_cursor_pos); |
| 384 void OnImeFinishComposingText(bool keep_selection); | 387 void OnImeFinishComposingText(bool keep_selection); |
| 385 | 388 |
| 386 #endif // defined(ENABLE_PLUGINS) | 389 #endif // defined(ENABLE_PLUGINS) |
| 387 | 390 |
| 388 // May return NULL in some cases, especially if userMediaClient() returns | 391 // May return NULL in some cases, especially if userMediaClient() returns |
| 389 // NULL. | 392 // NULL. |
| 390 MediaStreamDispatcher* GetMediaStreamDispatcher(); | 393 MediaStreamDispatcher* GetMediaStreamDispatcher(); |
| 391 | 394 |
| 395 void ScriptedPrint(bool user_initiated); |
| 396 |
| 392 #if defined(USE_EXTERNAL_POPUP_MENU) | 397 #if defined(USE_EXTERNAL_POPUP_MENU) |
| 393 void DidHideExternalPopupMenu(); | 398 void DidHideExternalPopupMenu(); |
| 394 #endif | 399 #endif |
| 395 | 400 |
| 396 // IPC::Sender | 401 // IPC::Sender |
| 397 bool Send(IPC::Message* msg) override; | 402 bool Send(IPC::Message* msg) override; |
| 398 | 403 |
| 399 // IPC::Listener | 404 // IPC::Listener |
| 400 bool OnMessageReceived(const IPC::Message& msg) override; | 405 bool OnMessageReceived(const IPC::Message& msg) override; |
| 401 void OnAssociatedInterfaceRequest( | 406 void OnAssociatedInterfaceRequest( |
| (...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1326 bool name_changed_before_first_commit_ = false; | 1331 bool name_changed_before_first_commit_ = false; |
| 1327 | 1332 |
| 1328 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1333 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1329 | 1334 |
| 1330 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1335 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1331 }; | 1336 }; |
| 1332 | 1337 |
| 1333 } // namespace content | 1338 } // namespace content |
| 1334 | 1339 |
| 1335 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1340 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |