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

Side by Side Diff: Source/WebKit/chromium/src/WebDevToolsAgentImpl.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) 2010-2011 Google Inc. All rights reserved. 2 * Copyright (C) 2010-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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "InspectorValues.h" 43 #include "InspectorValues.h"
44 #include "MemoryCache.h" 44 #include "MemoryCache.h"
45 #include "Page.h" 45 #include "Page.h"
46 #include "PageGroup.h" 46 #include "PageGroup.h"
47 #include "PageScriptDebugServer.h" 47 #include "PageScriptDebugServer.h"
48 #include "painting/GraphicsContextBuilder.h" 48 #include "painting/GraphicsContextBuilder.h"
49 #include "RenderView.h" 49 #include "RenderView.h"
50 #include "ResourceError.h" 50 #include "ResourceError.h"
51 #include "ResourceRequest.h" 51 #include "ResourceRequest.h"
52 #include "ResourceResponse.h" 52 #include "ResourceResponse.h"
53 #include "ScriptController.h"
53 #include "V8Binding.h" 54 #include "V8Binding.h"
54 #include "V8Utilities.h" 55 #include "V8Utilities.h"
55 #include "WebDataSource.h" 56 #include "WebDataSource.h"
56 #include "WebDevToolsAgentClient.h" 57 #include "WebDevToolsAgentClient.h"
57 #include "WebFrameImpl.h" 58 #include "WebFrameImpl.h"
58 #include "WebMemoryUsageInfo.h" 59 #include "WebMemoryUsageInfo.h"
59 #include "WebViewClient.h" 60 #include "WebViewClient.h"
60 #include "WebViewImpl.h" 61 #include "WebViewImpl.h"
61 #include <public/Platform.h> 62 #include <public/Platform.h>
62 #include <public/WebRect.h> 63 #include <public/WebRect.h>
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 resultObject->setString("data", hintData); 837 resultObject->setString("data", hintData);
837 break; 838 break;
838 case BrowserDataHintNone: 839 case BrowserDataHintNone:
839 default: 840 default:
840 ASSERT_NOT_REACHED(); 841 ASSERT_NOT_REACHED();
841 } 842 }
842 return messageObject->toJSONString(); 843 return messageObject->toJSONString();
843 } 844 }
844 845
845 } // namespace WebKit 846 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebBindings.cpp ('k') | Source/WebKit/chromium/src/WebPluginContainerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698