Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2920663002: Class/struct layout optimization for blink Resource related classes (Closed)
Patch Set: Rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 #include "media/base/routing_token_callback.h" 55 #include "media/base/routing_token_callback.h"
56 #include "mojo/public/cpp/bindings/associated_binding.h" 56 #include "mojo/public/cpp/bindings/associated_binding.h"
57 #include "mojo/public/cpp/bindings/binding.h" 57 #include "mojo/public/cpp/bindings/binding.h"
58 #include "mojo/public/cpp/bindings/binding_set.h" 58 #include "mojo/public/cpp/bindings/binding_set.h"
59 #include "mojo/public/cpp/system/data_pipe.h" 59 #include "mojo/public/cpp/system/data_pipe.h"
60 #include "ppapi/features/features.h" 60 #include "ppapi/features/features.h"
61 #include "services/service_manager/public/cpp/bind_source_info.h" 61 #include "services/service_manager/public/cpp/bind_source_info.h"
62 #include "services/service_manager/public/cpp/binder_registry.h" 62 #include "services/service_manager/public/cpp/binder_registry.h"
63 #include "services/service_manager/public/interfaces/connector.mojom.h" 63 #include "services/service_manager/public/interfaces/connector.mojom.h"
64 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" 64 #include "services/service_manager/public/interfaces/interface_provider.mojom.h"
65 #include "third_party/WebKit/public/platform/WebCachePolicy.h"
65 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h" 66 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h"
66 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h" 67 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h"
67 #include "third_party/WebKit/public/platform/WebFocusType.h" 68 #include "third_party/WebKit/public/platform/WebFocusType.h"
68 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" 69 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h"
69 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" 70 #include "third_party/WebKit/public/platform/WebMediaPlayer.h"
70 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" 71 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h"
71 #include "third_party/WebKit/public/platform/site_engagement.mojom.h" 72 #include "third_party/WebKit/public/platform/site_engagement.mojom.h"
72 #include "third_party/WebKit/public/web/WebAXObject.h" 73 #include "third_party/WebKit/public/web/WebAXObject.h"
73 #include "third_party/WebKit/public/web/WebDataSource.h" 74 #include "third_party/WebKit/public/web/WebDataSource.h"
74 #include "third_party/WebKit/public/web/WebFrameClient.h" 75 #include "third_party/WebKit/public/web/WebFrameClient.h"
(...skipping 16 matching lines...) Expand all
91 struct FrameMsg_PostMessage_Params; 92 struct FrameMsg_PostMessage_Params;
92 struct FrameMsg_SerializeAsMHTML_Params; 93 struct FrameMsg_SerializeAsMHTML_Params;
93 struct FrameMsg_TextTrackSettings_Params; 94 struct FrameMsg_TextTrackSettings_Params;
94 95
95 namespace blink { 96 namespace blink {
96 class WebContentDecryptionModule; 97 class WebContentDecryptionModule;
97 class WebLocalFrame; 98 class WebLocalFrame;
98 class WebPresentationClient; 99 class WebPresentationClient;
99 class WebPushClient; 100 class WebPushClient;
100 class WebSecurityOrigin; 101 class WebSecurityOrigin;
101 enum class WebCachePolicy;
102 struct WebCompositionUnderline; 102 struct WebCompositionUnderline;
103 struct WebContextMenuData; 103 struct WebContextMenuData;
104 struct WebCursorInfo; 104 struct WebCursorInfo;
105 struct WebFindOptions; 105 struct WebFindOptions;
106 class WebRelatedAppsFetcher; 106 class WebRelatedAppsFetcher;
107 } // namespace blink 107 } // namespace blink
108 108
109 namespace gfx { 109 namespace gfx {
110 class Point; 110 class Point;
111 class Range; 111 class Range;
(...skipping 1309 matching lines...) Expand 10 before | Expand all | Expand 10 after
1421 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_; 1421 std::vector<media::RoutingTokenCallback> pending_routing_token_callbacks_;
1422 1422
1423 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1423 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1424 1424
1425 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1425 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1426 }; 1426 };
1427 1427
1428 } // namespace content 1428 } // namespace content
1429 1429
1430 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1430 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/internal_document_state_data.h ('k') | third_party/WebKit/Source/core/frame/FrameTestHelpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698