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

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

Issue 25447002: Move JSONValues.cpp/.h to Source/platform/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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/inspector/InspectorCSSAgent.h ('k') | Source/core/inspector/InspectorDOMAgent.h » ('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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #include "core/fetch/StyleSheetResourceClient.h" 56 #include "core/fetch/StyleSheetResourceClient.h"
57 #include "core/html/HTMLHeadElement.h" 57 #include "core/html/HTMLHeadElement.h"
58 #include "core/inspector/InspectorDOMAgent.h" 58 #include "core/inspector/InspectorDOMAgent.h"
59 #include "core/inspector/InspectorHistory.h" 59 #include "core/inspector/InspectorHistory.h"
60 #include "core/inspector/InspectorPageAgent.h" 60 #include "core/inspector/InspectorPageAgent.h"
61 #include "core/inspector/InspectorResourceAgent.h" 61 #include "core/inspector/InspectorResourceAgent.h"
62 #include "core/inspector/InspectorState.h" 62 #include "core/inspector/InspectorState.h"
63 #include "core/inspector/InstrumentingAgents.h" 63 #include "core/inspector/InstrumentingAgents.h"
64 #include "core/loader/DocumentLoader.h" 64 #include "core/loader/DocumentLoader.h"
65 #include "core/page/ContentSecurityPolicy.h" 65 #include "core/page/ContentSecurityPolicy.h"
66 #include "core/platform/JSONValues.h"
67 #include "core/platform/graphics/Font.h" 66 #include "core/platform/graphics/Font.h"
68 #include "core/platform/graphics/GlyphBuffer.h" 67 #include "core/platform/graphics/GlyphBuffer.h"
69 #include "core/platform/graphics/TextRun.h" 68 #include "core/platform/graphics/TextRun.h"
70 #include "core/platform/graphics/WidthIterator.h" 69 #include "core/platform/graphics/WidthIterator.h"
71 #include "core/rendering/InlineTextBox.h" 70 #include "core/rendering/InlineTextBox.h"
72 #include "core/rendering/RenderObject.h" 71 #include "core/rendering/RenderObject.h"
73 #include "core/rendering/RenderRegion.h" 72 #include "core/rendering/RenderRegion.h"
74 #include "core/rendering/RenderText.h" 73 #include "core/rendering/RenderText.h"
75 #include "core/rendering/RenderTextFragment.h" 74 #include "core/rendering/RenderTextFragment.h"
75 #include "platform/JSONValues.h"
76 #include "wtf/CurrentTime.h" 76 #include "wtf/CurrentTime.h"
77 #include "wtf/HashSet.h" 77 #include "wtf/HashSet.h"
78 #include "wtf/Vector.h" 78 #include "wtf/Vector.h"
79 #include "wtf/text/CString.h" 79 #include "wtf/text/CString.h"
80 #include "wtf/text/StringConcatenate.h" 80 #include "wtf/text/StringConcatenate.h"
81 81
82 namespace CSSAgentState { 82 namespace CSSAgentState {
83 static const char cssAgentEnabled[] = "cssAgentEnabled"; 83 static const char cssAgentEnabled[] = "cssAgentEnabled";
84 } 84 }
85 85
(...skipping 1801 matching lines...) Expand 10 before | Expand all | Expand 10 after
1887 documentsToChange.add(element->ownerDocument()); 1887 documentsToChange.add(element->ownerDocument());
1888 } 1888 }
1889 1889
1890 m_nodeIdToForcedPseudoState.clear(); 1890 m_nodeIdToForcedPseudoState.clear();
1891 for (HashSet<Document*>::iterator it = documentsToChange.begin(), end = docu mentsToChange.end(); it != end; ++it) 1891 for (HashSet<Document*>::iterator it = documentsToChange.begin(), end = docu mentsToChange.end(); it != end; ++it)
1892 (*it)->setNeedsStyleRecalc(); 1892 (*it)->setNeedsStyleRecalc();
1893 } 1893 }
1894 1894
1895 } // namespace WebCore 1895 } // namespace WebCore
1896 1896
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.h ('k') | Source/core/inspector/InspectorDOMAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698