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

Side by Side Diff: webkit/glue/devtools/debugger_agent_impl.cc

Issue 126296: Use upstreamed V8Index (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
« no previous file with comments | « DEPS ('k') | webkit/port/bindings/v8/v8_index.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 6
7 #include <wtf/HashSet.h> 7 #include <wtf/HashSet.h>
8 #include <wtf/RefPtr.h> 8 #include <wtf/RefPtr.h>
9 #include <wtf/Vector.h> 9 #include <wtf/Vector.h>
10 10
11 #include "Document.h" 11 #include "Document.h"
12 #include "Page.h" 12 #include "Page.h"
13 #undef LOG 13 #undef LOG
14 14
15 #include "base/string_piece.h" 15 #include "base/string_piece.h"
16 #include "grit/webkit_resources.h" 16 #include "grit/webkit_resources.h"
17 #include "V8Binding.h" 17 #include "V8Binding.h"
18 #include "V8DOMWindow.h" 18 #include "V8DOMWindow.h"
19 #include "V8Index.h"
19 #include "v8_binding.h" 20 #include "v8_binding.h"
20 #include "v8_index.h"
21 #include "v8_proxy.h" 21 #include "v8_proxy.h"
22 #include "webkit/glue/devtools/debugger_agent_impl.h" 22 #include "webkit/glue/devtools/debugger_agent_impl.h"
23 #include "webkit/glue/devtools/debugger_agent_manager.h" 23 #include "webkit/glue/devtools/debugger_agent_manager.h"
24 #include "webkit/glue/glue_util.h" 24 #include "webkit/glue/glue_util.h"
25 #include "webkit/glue/webdevtoolsagent_impl.h" 25 #include "webkit/glue/webdevtoolsagent_impl.h"
26 #include "webkit/glue/webkit_glue.h" 26 #include "webkit/glue/webkit_glue.h"
27 #include "webkit/glue/webview_impl.h" 27 #include "webkit/glue/webview_impl.h"
28 28
29 using WebCore::DOMWindow; 29 using WebCore::DOMWindow;
30 using WebCore::Document; 30 using WebCore::Document;
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 return ""; 176 return "";
177 } else { 177 } else {
178 v8::Handle<v8::String> res_json = v8::Handle<v8::String>::Cast(res_obj); 178 v8::Handle<v8::String> res_json = v8::Handle<v8::String>::Cast(res_obj);
179 return WebCore::toWebCoreString(res_json); 179 return WebCore::toWebCoreString(res_json);
180 } 180 }
181 } 181 }
182 182
183 WebCore::Page* DebuggerAgentImpl::GetPage() { 183 WebCore::Page* DebuggerAgentImpl::GetPage() {
184 return web_view_impl_->page(); 184 return web_view_impl_->page();
185 } 185 }
OLDNEW
« no previous file with comments | « DEPS ('k') | webkit/port/bindings/v8/v8_index.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698