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

Side by Side Diff: Source/core/testing/InspectorFrontendClientLocal.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu 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
« no previous file with comments | « Source/core/svg/animation/SVGSMILElement.cpp ('k') | Source/core/testing/InternalSettings.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 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "InspectorFrontendClientLocal.h" 32 #include "InspectorFrontendClientLocal.h"
33 33
34 #include "InspectorController.h" 34 #include "InspectorController.h"
35 #include "InspectorFrontendHost.h" 35 #include "InspectorFrontendHost.h"
36 #include "Page.h" 36 #include "Page.h"
37 #include "ScriptObject.h" 37 #include "ScriptObject.h"
38 #include "Settings.h" 38 #include "Settings.h"
39 #include "Timer.h" 39 #include "core/platform/Timer.h"
40 #include <wtf/Deque.h> 40 #include <wtf/Deque.h>
41 #include <wtf/text/WTFString.h> 41 #include <wtf/text/WTFString.h>
42 42
43 namespace WebCore { 43 namespace WebCore {
44 44
45 class InspectorBackendDispatchTask { 45 class InspectorBackendDispatchTask {
46 WTF_MAKE_FAST_ALLOCATED; 46 WTF_MAKE_FAST_ALLOCATED;
47 public: 47 public:
48 InspectorBackendDispatchTask(InspectorController* inspectorController) 48 InspectorBackendDispatchTask(InspectorController* inspectorController)
49 : m_inspectorController(inspectorController) 49 : m_inspectorController(inspectorController)
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 ScriptGlobalObject::set(frontendScriptState, "InspectorFrontendHost", m_fron tendHost.get()); 104 ScriptGlobalObject::set(frontendScriptState, "InspectorFrontendHost", m_fron tendHost.get());
105 } 105 }
106 106
107 void InspectorFrontendClientLocal::sendMessageToBackend(const String& message) 107 void InspectorFrontendClientLocal::sendMessageToBackend(const String& message)
108 { 108 {
109 m_dispatchTask->dispatch(message); 109 m_dispatchTask->dispatch(message);
110 } 110 }
111 111
112 } // namespace WebCore 112 } // namespace WebCore
113 113
OLDNEW
« no previous file with comments | « Source/core/svg/animation/SVGSMILElement.cpp ('k') | Source/core/testing/InternalSettings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698