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

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

Issue 359603002: *** NOT FOR LANDING *** Remove StyleEngine.h include from RenderObject.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@final-step
Patch Set: 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
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/rendering/RenderBR.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) 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/v8/DOMWrapperWorld.h" 34 #include "bindings/v8/DOMWrapperWorld.h"
35 #include "bindings/v8/ScriptController.h" 35 #include "bindings/v8/ScriptController.h"
36 #include "bindings/v8/ScriptRegexp.h" 36 #include "bindings/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 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 bool InspectorPageAgent::getEditedResourceContent(const String& url, String* con tent) 1388 bool InspectorPageAgent::getEditedResourceContent(const String& url, String* con tent)
1388 { 1389 {
1389 if (!m_editedResourceContent.contains(url)) 1390 if (!m_editedResourceContent.contains(url))
1390 return false; 1391 return false;
1391 *content = m_editedResourceContent.get(url); 1392 *content = m_editedResourceContent.get(url);
1392 return true; 1393 return true;
1393 } 1394 }
1394 1395
1395 } // namespace WebCore 1396 } // namespace WebCore
1396 1397
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/rendering/RenderBR.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698