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

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

Issue 437213004: wtf/Vector.h included more than necessary (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/InspectorOverlay.h ('k') | Source/core/inspector/ScriptArguments.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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/rendering/RenderInline.h" 50 #include "core/rendering/RenderInline.h"
51 #include "core/rendering/RenderObject.h" 51 #include "core/rendering/RenderObject.h"
52 #include "core/rendering/shapes/ShapeOutsideInfo.h" 52 #include "core/rendering/shapes/ShapeOutsideInfo.h"
53 #include "core/rendering/style/RenderStyleConstants.h" 53 #include "core/rendering/style/RenderStyleConstants.h"
54 #include "platform/JSONValues.h" 54 #include "platform/JSONValues.h"
55 #include "platform/PlatformMouseEvent.h" 55 #include "platform/PlatformMouseEvent.h"
56 #include "platform/ScriptForbiddenScope.h" 56 #include "platform/ScriptForbiddenScope.h"
57 #include "platform/graphics/GraphicsContextStateSaver.h" 57 #include "platform/graphics/GraphicsContextStateSaver.h"
58 #include "public/platform/Platform.h" 58 #include "public/platform/Platform.h"
59 #include "public/platform/WebData.h" 59 #include "public/platform/WebData.h"
60 #include "wtf/Vector.h"
60 #include "wtf/text/StringBuilder.h" 61 #include "wtf/text/StringBuilder.h"
61 #include <v8.h> 62 #include <v8.h>
62 63
63 namespace blink { 64 namespace blink {
64 65
65 namespace { 66 namespace {
66 67
67 class PathBuilder { 68 class PathBuilder {
68 WTF_MAKE_NONCOPYABLE(PathBuilder); 69 WTF_MAKE_NONCOPYABLE(PathBuilder);
69 public: 70 public:
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
855 hideHighlight(); 856 hideHighlight();
856 } 857 }
857 858
858 void InspectorOverlay::startedRecordingProfile() 859 void InspectorOverlay::startedRecordingProfile()
859 { 860 {
860 if (!m_activeProfilerCount++) 861 if (!m_activeProfilerCount++)
861 freePage(); 862 freePage();
862 } 863 }
863 864
864 } // namespace blink 865 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorOverlay.h ('k') | Source/core/inspector/ScriptArguments.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698