Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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) |
| OLD | NEW |