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

Side by Side Diff: Source/web/DevToolsEmulator.h

Issue 1326693003: Revert of Make classes and structures in web fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « Source/web/DatabaseClientImpl.h ('k') | Source/web/DragClientImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 DevToolsEmulator_h 5 #ifndef DevToolsEmulator_h
6 #define DevToolsEmulator_h 6 #define DevToolsEmulator_h
7 7
8 #include "platform/heap/Handle.h" 8 #include "platform/heap/Handle.h"
9 #include "wtf/Forward.h" 9 #include "wtf/Forward.h"
10 #include "wtf/OwnPtr.h" 10 #include "wtf/OwnPtr.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class InspectorEmulationAgent; 14 class InspectorEmulationAgent;
15 class IntPoint; 15 class IntPoint;
16 class WebInputEvent; 16 class WebInputEvent;
17 class WebViewImpl; 17 class WebViewImpl;
18 18
19 struct WebDeviceEmulationParams; 19 struct WebDeviceEmulationParams;
20 20
21 class DevToolsEmulator final : public NoBaseWillBeGarbageCollectedFinalized<DevT oolsEmulator> { 21 class DevToolsEmulator final : public NoBaseWillBeGarbageCollectedFinalized<DevT oolsEmulator> {
22 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(DevToolsEmulator);
23 public: 22 public:
24 ~DevToolsEmulator(); 23 ~DevToolsEmulator();
25 static PassOwnPtrWillBeRawPtr<DevToolsEmulator> create(WebViewImpl*); 24 static PassOwnPtrWillBeRawPtr<DevToolsEmulator> create(WebViewImpl*);
26 DECLARE_TRACE(); 25 DECLARE_TRACE();
27 26
28 void setEmulationAgent(InspectorEmulationAgent*); 27 void setEmulationAgent(InspectorEmulationAgent*);
29 void viewportChanged(); 28 void viewportChanged();
30 29
31 // Settings overrides. 30 // Settings overrides.
32 void setTextAutosizingEnabled(bool); 31 void setTextAutosizingEnabled(bool);
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 OwnPtr<IntPoint> m_lastPinchAnchorDip; 76 OwnPtr<IntPoint> m_lastPinchAnchorDip;
78 77
79 bool m_embedderScriptEnabled; 78 bool m_embedderScriptEnabled;
80 bool m_scriptExecutionDisabled; 79 bool m_scriptExecutionDisabled;
81 bool m_hidePinchScrollbarsNearMinScale; 80 bool m_hidePinchScrollbarsNearMinScale;
82 }; 81 };
83 82
84 } // namespace blink 83 } // namespace blink
85 84
86 #endif 85 #endif
OLDNEW
« no previous file with comments | « Source/web/DatabaseClientImpl.h ('k') | Source/web/DragClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698