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

Side by Side Diff: Source/core/inspector/InspectorPageAgent.h

Issue 1212373003: Devtools [LayouEditor]: Show label with size info (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address comments Created 5 years, 5 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 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 void frameDetachedFromParent(LocalFrame*); 111 void frameDetachedFromParent(LocalFrame*);
112 void frameStartedLoading(LocalFrame*); 112 void frameStartedLoading(LocalFrame*);
113 void frameStoppedLoading(LocalFrame*); 113 void frameStoppedLoading(LocalFrame*);
114 void frameScheduledNavigation(LocalFrame*, double delay); 114 void frameScheduledNavigation(LocalFrame*, double delay);
115 void frameClearedScheduledNavigation(LocalFrame*); 115 void frameClearedScheduledNavigation(LocalFrame*);
116 void willRunJavaScriptDialog(const String& message, ChromeClient::DialogType ); 116 void willRunJavaScriptDialog(const String& message, ChromeClient::DialogType );
117 void didRunJavaScriptDialog(bool result); 117 void didRunJavaScriptDialog(bool result);
118 void didLayout(); 118 void didLayout();
119 void didScroll(); 119 void didScroll();
120 void didResizeMainFrame(); 120 void didResizeMainFrame();
121 void didRecalculateStyle(int);
122 121
123 // Inspector Controller API 122 // Inspector Controller API
124 void disable(ErrorString*) override; 123 void disable(ErrorString*) override;
125 void restore() override; 124 void restore() override;
126 void discardAgent() override; 125 void discardAgent() override;
127 126
128 // Cross-agents API 127 // Cross-agents API
129 static DocumentLoader* assertDocumentLoader(ErrorString*, LocalFrame*); 128 static DocumentLoader* assertDocumentLoader(ErrorString*, LocalFrame*);
130 LocalFrame* frameForId(const String& frameId); 129 LocalFrame* frameForId(const String& frameId);
131 LocalFrame* assertFrame(ErrorString*, const String& frameId); 130 LocalFrame* assertFrame(ErrorString*, const String& frameId);
(...skipping 28 matching lines...) Expand all
160 bool m_reloading; 159 bool m_reloading;
161 160
162 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader; 161 OwnPtrWillBeMember<InspectorResourceContentLoader> m_inspectorResourceConten tLoader;
163 }; 162 };
164 163
165 164
166 } // namespace blink 165 } // namespace blink
167 166
168 167
169 #endif // !defined(InspectorPagerAgent_h) 168 #endif // !defined(InspectorPagerAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorOverlayPage.html ('k') | Source/core/inspector/InspectorPageAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698