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

Side by Side Diff: third_party/WebKit/public/web/WebLocalFrame.h

Issue 2920663002: Class/struct layout optimization for blink Resource related classes (Closed)
Patch Set: 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 WebLocalFrame_h 5 #ifndef WebLocalFrame_h
6 #define WebLocalFrame_h 6 #define WebLocalFrame_h
7 7
8 #include <set> 8 #include <set>
9 #include "WebCompositionUnderline.h" 9 #include "WebCompositionUnderline.h"
10 #include "WebFrame.h" 10 #include "WebFrame.h"
(...skipping 17 matching lines...) Expand all
28 class WebDevToolsAgent; 28 class WebDevToolsAgent;
29 class WebDevToolsAgentClient; 29 class WebDevToolsAgentClient;
30 class WebDoubleSize; 30 class WebDoubleSize;
31 class WebFrameClient; 31 class WebFrameClient;
32 class WebFrameWidget; 32 class WebFrameWidget;
33 class WebInputMethodController; 33 class WebInputMethodController;
34 class WebRange; 34 class WebRange;
35 class WebScriptExecutionCallback; 35 class WebScriptExecutionCallback;
36 class WebTextCheckClient; 36 class WebTextCheckClient;
37 class WebURLLoader; 37 class WebURLLoader;
38 enum class WebCachePolicy; 38 enum class WebCachePolicy : uint8_t;
39 enum class WebSandboxFlags; 39 enum class WebSandboxFlags;
40 enum class WebTreeScopeType; 40 enum class WebTreeScopeType;
41 struct WebConsoleMessage; 41 struct WebConsoleMessage;
42 struct WebContentSecurityPolicyViolation; 42 struct WebContentSecurityPolicyViolation;
43 struct WebFindOptions; 43 struct WebFindOptions;
44 struct WebFloatRect; 44 struct WebFloatRect;
45 struct WebPrintPresetOptions; 45 struct WebPrintPresetOptions;
46 struct WebSourceLocation; 46 struct WebSourceLocation;
47 47
48 // Interface for interacting with in process frames. This contains methods that 48 // Interface for interacting with in process frames. This contains methods that
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 // to call these on a WebLocalFrame. 576 // to call these on a WebLocalFrame.
577 bool IsWebLocalFrame() const override = 0; 577 bool IsWebLocalFrame() const override = 0;
578 WebLocalFrame* ToWebLocalFrame() override = 0; 578 WebLocalFrame* ToWebLocalFrame() override = 0;
579 bool IsWebRemoteFrame() const override = 0; 579 bool IsWebRemoteFrame() const override = 0;
580 WebRemoteFrame* ToWebRemoteFrame() override = 0; 580 WebRemoteFrame* ToWebRemoteFrame() override = 0;
581 }; 581 };
582 582
583 } // namespace blink 583 } // namespace blink
584 584
585 #endif // WebLocalFrame_h 585 #endif // WebLocalFrame_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698