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

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

Issue 358603002: Remove StyleEngine.h include from RenderObject.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@rename-style-bool-to-0
Patch Set: Rebased for landing Created 6 years, 5 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
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/rendering/InlineBox.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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 19 matching lines...) Expand all
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "core/inspector/InspectorPageAgent.h" 32 #include "core/inspector/InspectorPageAgent.h"
33 33
34 #include "bindings/core/v8/DOMWrapperWorld.h" 34 #include "bindings/core/v8/DOMWrapperWorld.h"
35 #include "bindings/core/v8/ScriptController.h" 35 #include "bindings/core/v8/ScriptController.h"
36 #include "bindings/core/v8/ScriptRegexp.h" 36 #include "bindings/core/v8/ScriptRegexp.h"
37 #include "core/HTMLNames.h" 37 #include "core/HTMLNames.h"
38 #include "core/UserAgentStyleSheets.h" 38 #include "core/UserAgentStyleSheets.h"
39 #include "core/css/StyleSheetContents.h" 39 #include "core/css/StyleSheetContents.h"
40 #include "core/css/resolver/StyleResolver.h"
40 #include "core/css/resolver/ViewportStyleResolver.h" 41 #include "core/css/resolver/ViewportStyleResolver.h"
41 #include "core/dom/DOMImplementation.h" 42 #include "core/dom/DOMImplementation.h"
42 #include "core/dom/Document.h" 43 #include "core/dom/Document.h"
43 #include "core/fetch/CSSStyleSheetResource.h" 44 #include "core/fetch/CSSStyleSheetResource.h"
44 #include "core/fetch/FontResource.h" 45 #include "core/fetch/FontResource.h"
45 #include "core/fetch/ImageResource.h" 46 #include "core/fetch/ImageResource.h"
46 #include "core/fetch/MemoryCache.h" 47 #include "core/fetch/MemoryCache.h"
47 #include "core/fetch/Resource.h" 48 #include "core/fetch/Resource.h"
48 #include "core/fetch/ResourceFetcher.h" 49 #include "core/fetch/ResourceFetcher.h"
49 #include "core/fetch/ScriptResource.h" 50 #include "core/fetch/ScriptResource.h"
(...skipping 1377 matching lines...) Expand 10 before | Expand all | Expand 10 after
1427 bool InspectorPageAgent::getEditedResourceContent(const String& url, String* con tent) 1428 bool InspectorPageAgent::getEditedResourceContent(const String& url, String* con tent)
1428 { 1429 {
1429 if (!m_editedResourceContent.contains(url)) 1430 if (!m_editedResourceContent.contains(url))
1430 return false; 1431 return false;
1431 *content = m_editedResourceContent.get(url); 1432 *content = m_editedResourceContent.get(url);
1432 return true; 1433 return true;
1433 } 1434 }
1434 1435
1435 } // namespace WebCore 1436 } // namespace WebCore
1436 1437
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/rendering/InlineBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698