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

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

Issue 1206833003: Devtools[LayoutEditor]: Pass data about property change from InspectorOverlayPage (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix empty line Created 5 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010, Google Inc. All rights reserved. 2 * Copyright (C) 2010, 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 DECLARE_VIRTUAL_TRACE(); 106 DECLARE_VIRTUAL_TRACE();
107 107
108 bool forcePseudoState(Element*, CSSSelector::PseudoType); 108 bool forcePseudoState(Element*, CSSSelector::PseudoType);
109 void discardAgent() override; 109 void discardAgent() override;
110 void didCommitLoadForLocalFrame(LocalFrame*) override; 110 void didCommitLoadForLocalFrame(LocalFrame*) override;
111 void restore() override; 111 void restore() override;
112 void flushPendingProtocolNotifications() override; 112 void flushPendingProtocolNotifications() override;
113 void disable(ErrorString*) override; 113 void disable(ErrorString*) override;
114 void reset(); 114 void reset();
115 void mediaQueryResultChanged(); 115 void mediaQueryResultChanged();
116 void updateCSSProperty(Node*, CSSPropertyID, float);
dgozman 2015/06/25 12:30:59 setCSSPropertyValue?
sergeyv 2015/06/25 12:54:30 Done.
116 117
117 void activeStyleSheetsUpdated(Document*); 118 void activeStyleSheetsUpdated(Document*);
118 void documentDetached(Document*); 119 void documentDetached(Document*);
119 120
120 void addEditedStyleSheet(const String& url, const String& content); 121 void addEditedStyleSheet(const String& url, const String& content);
121 bool getEditedStyleSheet(const String& url, String* content); 122 bool getEditedStyleSheet(const String& url, String* content);
122 123
123 void addEditedStyleElement(int backendNodeId, const String& content); 124 void addEditedStyleElement(int backendNodeId, const String& content);
124 bool getEditedStyleElement(int backendNodeId, String* content); 125 bool getEditedStyleElement(int backendNodeId, String* content);
125 126
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 bool m_isSettingStyleSheetText; 217 bool m_isSettingStyleSheetText;
217 218
218 friend class InspectorResourceContentLoaderCallback; 219 friend class InspectorResourceContentLoaderCallback;
219 friend class StyleSheetBinder; 220 friend class StyleSheetBinder;
220 }; 221 };
221 222
222 223
223 } // namespace blink 224 } // namespace blink
224 225
225 #endif // !defined(InspectorCSSAgent_h) 226 #endif // !defined(InspectorCSSAgent_h)
OLDNEW
« no previous file with comments | « no previous file | Source/core/inspector/InspectorCSSAgent.cpp » ('j') | Source/core/inspector/InspectorOverlayPage.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698