| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 struct FrameMsg_MixedContentFound_Params; | 89 struct FrameMsg_MixedContentFound_Params; |
| 90 struct FrameMsg_PostMessage_Params; | 90 struct FrameMsg_PostMessage_Params; |
| 91 struct FrameMsg_SerializeAsMHTML_Params; | 91 struct FrameMsg_SerializeAsMHTML_Params; |
| 92 struct FrameMsg_TextTrackSettings_Params; | 92 struct FrameMsg_TextTrackSettings_Params; |
| 93 | 93 |
| 94 namespace blink { | 94 namespace blink { |
| 95 class WebContentDecryptionModule; | 95 class WebContentDecryptionModule; |
| 96 class WebPresentationClient; | 96 class WebPresentationClient; |
| 97 class WebPushClient; | 97 class WebPushClient; |
| 98 class WebSecurityOrigin; | 98 class WebSecurityOrigin; |
| 99 enum class WebCachePolicy; | 99 enum class WebCachePolicy : uint8_t; |
| 100 struct WebCompositionUnderline; | 100 struct WebCompositionUnderline; |
| 101 struct WebContextMenuData; | 101 struct WebContextMenuData; |
| 102 struct WebCursorInfo; | 102 struct WebCursorInfo; |
| 103 struct WebFindOptions; | 103 struct WebFindOptions; |
| 104 class WebRelatedAppsFetcher; | 104 class WebRelatedAppsFetcher; |
| 105 } // namespace blink | 105 } // namespace blink |
| 106 | 106 |
| 107 namespace gfx { | 107 namespace gfx { |
| 108 class Point; | 108 class Point; |
| 109 class Range; | 109 class Range; |
| (...skipping 1306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1416 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; | 1416 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; |
| 1417 | 1417 |
| 1418 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1418 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1419 | 1419 |
| 1420 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1420 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1421 }; | 1421 }; |
| 1422 | 1422 |
| 1423 } // namespace content | 1423 } // namespace content |
| 1424 | 1424 |
| 1425 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1425 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |