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

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

Issue 15660004: Reporing invalid CSS selectors. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 #include "core/storage/StorageArea.h" 48 #include "core/storage/StorageArea.h"
49 #include "modules/websockets/WebSocketFrame.h" 49 #include "modules/websockets/WebSocketFrame.h"
50 #include "modules/websockets/WebSocketHandshakeRequest.h" 50 #include "modules/websockets/WebSocketHandshakeRequest.h"
51 #include "modules/websockets/WebSocketHandshakeResponse.h" 51 #include "modules/websockets/WebSocketHandshakeResponse.h"
52 #include <wtf/RefPtr.h> 52 #include <wtf/RefPtr.h>
53 #include <wtf/UnusedParam.h> 53 #include <wtf/UnusedParam.h>
54 #include <wtf/Vector.h> 54 #include <wtf/Vector.h>
55 55
56 namespace WebCore { 56 namespace WebCore {
57 57
58 struct CSSParserLocation; 58 struct CSSParserString;
59 class CSSRule; 59 class CSSRule;
60 class CachedResource; 60 class CachedResource;
61 class CharacterData; 61 class CharacterData;
62 class DOMWindow; 62 class DOMWindow;
63 class DOMWrapperWorld; 63 class DOMWrapperWorld;
64 class Database; 64 class Database;
65 class Document; 65 class Document;
66 class Element; 66 class Element;
67 class EventContext; 67 class EventContext;
68 class DocumentLoader; 68 class DocumentLoader;
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 return instrumentingAgentsForPage(page); 189 return instrumentingAgentsForPage(page);
190 } 190 }
191 return 0; 191 return 0;
192 } 192 }
193 193
194 inline InstrumentingAgents* instrumentingAgentsForElement(Element* element) 194 inline InstrumentingAgents* instrumentingAgentsForElement(Element* element)
195 { 195 {
196 return instrumentingAgentsForDocument(element->document()); 196 return instrumentingAgentsForDocument(element->document());
197 } 197 }
198 198
199 bool cssErrorFilter(const CSSParserLocation&, int propertyId, int errorType); 199 bool cssErrorFilter(const CSSParserString& content, int propertyId, int errorTyp e);
200 200
201 } // namespace InspectorInstrumentation 201 } // namespace InspectorInstrumentation
202 202
203 } // namespace WebCore 203 } // namespace WebCore
204 204
205 // This file will soon be generated 205 // This file will soon be generated
206 #include "InspectorInstrumentationInl.h" 206 #include "InspectorInstrumentationInl.h"
207 207
208 #include "InspectorInstrumentationCustomInl.h" 208 #include "InspectorInstrumentationCustomInl.h"
209 209
210 #include "InspectorOverridesInl.h" 210 #include "InspectorOverridesInl.h"
211 211
212 #endif // !defined(InspectorInstrumentation_h) 212 #endif // !defined(InspectorInstrumentation_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/inspector/InspectorInstrumentation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698