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 25 matching lines...) Expand all Loading... |
36 #include "FrameView.h" | 36 #include "FrameView.h" |
37 #include "GraphicsContext.h" | 37 #include "GraphicsContext.h" |
38 #include "InspectorClient.h" | 38 #include "InspectorClient.h" |
39 #include "InspectorOverlayPage.h" | 39 #include "InspectorOverlayPage.h" |
40 #include "InspectorValues.h" | 40 #include "InspectorValues.h" |
41 #include "Node.h" | 41 #include "Node.h" |
42 #include "Page.h" | 42 #include "Page.h" |
43 #include "RenderBoxModelObject.h" | 43 #include "RenderBoxModelObject.h" |
44 #include "RenderInline.h" | 44 #include "RenderInline.h" |
45 #include "RenderObject.h" | 45 #include "RenderObject.h" |
| 46 #include "ScriptController.h" |
46 #include "ScriptSourceCode.h" | 47 #include "ScriptSourceCode.h" |
47 #include "ScriptValue.h" | 48 #include "ScriptValue.h" |
48 #include "Settings.h" | 49 #include "Settings.h" |
49 #include "StyledElement.h" | 50 #include "StyledElement.h" |
50 #include "WebCoreMemoryInstrumentation.h" | 51 #include "WebCoreMemoryInstrumentation.h" |
51 #include <wtf/text/StringBuilder.h> | 52 #include <wtf/text/StringBuilder.h> |
52 | 53 |
53 namespace WebCore { | 54 namespace WebCore { |
54 | 55 |
55 namespace { | 56 namespace { |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
502 info.addMember(m_size, "size"); | 503 info.addMember(m_size, "size"); |
503 } | 504 } |
504 | 505 |
505 void InspectorOverlay::freePage() | 506 void InspectorOverlay::freePage() |
506 { | 507 { |
507 m_overlayPage.clear(); | 508 m_overlayPage.clear(); |
508 } | 509 } |
509 | 510 |
510 } // namespace WebCore | 511 } // namespace WebCore |
511 | 512 |
OLD | NEW |