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

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

Issue 334713006: Use stricter typing for NodeLists throughout the code base (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 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
« no previous file with comments | « Source/core/html/LabelableElement.cpp ('k') | Source/core/inspector/InspectorCSSAgent.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 class CSSRuleList; 47 class CSSRuleList;
48 class CSSStyleRule; 48 class CSSStyleRule;
49 class CSSStyleSheet; 49 class CSSStyleSheet;
50 class Document; 50 class Document;
51 class Element; 51 class Element;
52 class InspectorFrontend; 52 class InspectorFrontend;
53 class InspectorResourceAgent; 53 class InspectorResourceAgent;
54 class InstrumentingAgents; 54 class InstrumentingAgents;
55 class MediaList; 55 class MediaList;
56 class Node; 56 class Node;
57 class NodeList;
58 class PlatformFontUsage; 57 class PlatformFontUsage;
59 class RenderText; 58 class RenderText;
60 class StyleResolver; 59 class StyleResolver;
61 60
62 class InspectorCSSAgent FINAL 61 class InspectorCSSAgent FINAL
63 : public InspectorBaseAgent<InspectorCSSAgent> 62 : public InspectorBaseAgent<InspectorCSSAgent>
64 , public InspectorDOMAgent::DOMListener 63 , public InspectorDOMAgent::DOMListener
65 , public InspectorBackendDispatcher::CSSCommandHandler 64 , public InspectorBackendDispatcher::CSSCommandHandler
66 , public InspectorStyleSheetBase::Listener { 65 , public InspectorStyleSheetBase::Listener {
67 WTF_MAKE_NONCOPYABLE(InspectorCSSAgent); 66 WTF_MAKE_NONCOPYABLE(InspectorCSSAgent);
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 bool m_isSettingStyleSheetText; 218 bool m_isSettingStyleSheetText;
220 219
221 friend class EnableResourceClient; 220 friend class EnableResourceClient;
222 friend class StyleSheetBinder; 221 friend class StyleSheetBinder;
223 }; 222 };
224 223
225 224
226 } // namespace WebCore 225 } // namespace WebCore
227 226
228 #endif // !defined(InspectorCSSAgent_h) 227 #endif // !defined(InspectorCSSAgent_h)
OLDNEW
« no previous file with comments | « Source/core/html/LabelableElement.cpp ('k') | Source/core/inspector/InspectorCSSAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698