| OLD | NEW | 
|    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  Loading... | 
|   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  Loading... | 
|  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 | 
| OLD | NEW |