| 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 | 60 |
| 61 using namespace WebCore; | 61 using namespace WebCore; |
| 62 | 62 |
| 63 namespace blink { | 63 namespace blink { |
| 64 | 64 |
| 65 class WebDevToolsFrontendImpl::InspectorFrontendResumeObserver : public ActiveDO
MObject { | 65 class WebDevToolsFrontendImpl::InspectorFrontendResumeObserver : public ActiveDO
MObject { |
| 66 WTF_MAKE_NONCOPYABLE(InspectorFrontendResumeObserver); | 66 WTF_MAKE_NONCOPYABLE(InspectorFrontendResumeObserver); |
| 67 public: | 67 public: |
| 68 InspectorFrontendResumeObserver(WebDevToolsFrontendImpl* webDevToolsFrontend
Impl, Document* document) | 68 InspectorFrontendResumeObserver(WebDevToolsFrontendImpl* webDevToolsFrontend
Impl, Document* document) |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 } | 160 } |
| 161 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchF
unction); | 161 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(dispatchF
unction); |
| 162 Vector< v8::Handle<v8::Value> > args; | 162 Vector< v8::Handle<v8::Value> > args; |
| 163 args.append(v8String(message, isolate)); | 163 args.append(v8String(message, isolate)); |
| 164 v8::TryCatch tryCatch; | 164 v8::TryCatch tryCatch; |
| 165 tryCatch.SetVerbose(true); | 165 tryCatch.SetVerbose(true); |
| 166 ScriptController::callFunction(frame->frame()->document(), function, dispatc
herObject, args.size(), args.data(), isolate); | 166 ScriptController::callFunction(frame->frame()->document(), function, dispatc
herObject, args.size(), args.data(), isolate); |
| 167 } | 167 } |
| 168 | 168 |
| 169 } // namespace blink | 169 } // namespace blink |
| OLD | NEW |