OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 #include "core/dom/Node.h" | 48 #include "core/dom/Node.h" |
49 #include "core/inspector/InspectorController.h" | 49 #include "core/inspector/InspectorController.h" |
50 #include "core/inspector/InspectorFrontendHost.h" | 50 #include "core/inspector/InspectorFrontendHost.h" |
51 #include "core/page/ContextMenuController.h" | 51 #include "core/page/ContextMenuController.h" |
52 #include "core/frame/DOMWindow.h" | 52 #include "core/frame/DOMWindow.h" |
53 #include "core/frame/Frame.h" | 53 #include "core/frame/Frame.h" |
54 #include "core/page/Page.h" | 54 #include "core/page/Page.h" |
55 #include "core/page/Settings.h" | 55 #include "core/page/Settings.h" |
56 #include "core/platform/ContextMenuItem.h" | 56 #include "core/platform/ContextMenuItem.h" |
57 #include "core/platform/Pasteboard.h" | 57 #include "core/platform/Pasteboard.h" |
58 #include "weborigin/SecurityOrigin.h" | 58 #include "platform/weborigin/SecurityOrigin.h" |
59 #include "wtf/OwnPtr.h" | 59 #include "wtf/OwnPtr.h" |
60 #include "wtf/Vector.h" | 60 #include "wtf/Vector.h" |
61 #include "wtf/text/WTFString.h" | 61 #include "wtf/text/WTFString.h" |
62 | 62 |
63 using namespace WebCore; | 63 using namespace WebCore; |
64 | 64 |
65 namespace WebKit { | 65 namespace WebKit { |
66 | 66 |
67 class WebDevToolsFrontendImpl::InspectorFrontendResumeObserver : public ActiveDO
MObject { | 67 class WebDevToolsFrontendImpl::InspectorFrontendResumeObserver : public ActiveDO
MObject { |
68 WTF_MAKE_NONCOPYABLE(InspectorFrontendResumeObserver); | 68 WTF_MAKE_NONCOPYABLE(InspectorFrontendResumeObserver); |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 } | 166 } |
167 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchF
unction); | 167 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchF
unction); |
168 Vector< v8::Handle<v8::Value> > args; | 168 Vector< v8::Handle<v8::Value> > args; |
169 args.append(v8String(message, isolate)); | 169 args.append(v8String(message, isolate)); |
170 v8::TryCatch tryCatch; | 170 v8::TryCatch tryCatch; |
171 tryCatch.SetVerbose(true); | 171 tryCatch.SetVerbose(true); |
172 ScriptController::callFunction(frame->frame()->document(), function, dispatc
herObject, args.size(), args.data(), isolate); | 172 ScriptController::callFunction(frame->frame()->document(), function, dispatc
herObject, args.size(), args.data(), isolate); |
173 } | 173 } |
174 | 174 |
175 } // namespace WebKit | 175 } // namespace WebKit |
OLD | NEW |