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

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

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix Created 7 years, 8 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 | Annotate | Revision Log
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 25 matching lines...) Expand all
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
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
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.cpp ('k') | Source/core/inspector/InspectorPageAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698