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

Side by Side Diff: Source/web/WebDevToolsFrontendImpl.cpp

Issue 58943003: Remove duplicated headers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « Source/web/WebDevToolsAgentImpl.cpp ('k') | Source/web/WebEntities.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "weborigin/SecurityOrigin.h"
59 #include "wtf/OwnPtr.h" 59 #include "wtf/OwnPtr.h"
60 #include "wtf/Vector.h"
61 #include "wtf/text/WTFString.h"
62 60
63 using namespace WebCore; 61 using namespace WebCore;
64 62
65 namespace blink { 63 namespace blink {
66 64
67 class WebDevToolsFrontendImpl::InspectorFrontendResumeObserver : public ActiveDO MObject { 65 class WebDevToolsFrontendImpl::InspectorFrontendResumeObserver : public ActiveDO MObject {
68 WTF_MAKE_NONCOPYABLE(InspectorFrontendResumeObserver); 66 WTF_MAKE_NONCOPYABLE(InspectorFrontendResumeObserver);
69 public: 67 public:
70 InspectorFrontendResumeObserver(WebDevToolsFrontendImpl* webDevToolsFrontend Impl, Document* document) 68 InspectorFrontendResumeObserver(WebDevToolsFrontendImpl* webDevToolsFrontend Impl, Document* document)
71 : ActiveDOMObject(document) 69 : ActiveDOMObject(document)
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 } 160 }
163 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);
164 Vector< v8::Handle<v8::Value> > args; 162 Vector< v8::Handle<v8::Value> > args;
165 args.append(v8String(message, isolate)); 163 args.append(v8String(message, isolate));
166 v8::TryCatch tryCatch; 164 v8::TryCatch tryCatch;
167 tryCatch.SetVerbose(true); 165 tryCatch.SetVerbose(true);
168 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);
169 } 167 }
170 168
171 } // namespace blink 169 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebDevToolsAgentImpl.cpp ('k') | Source/web/WebEntities.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698