Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / WebDevToolsFrontendImpl.h
blobceceb67eb03a482f20ddc72b4cae10f0639c61f8
1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #ifndef WebDevToolsFrontendImpl_h
32 #define WebDevToolsFrontendImpl_h
34 #include "core/inspector/InspectorFrontendClient.h"
35 #include "platform/heap/Handle.h"
36 #include "public/web/WebDevToolsFrontend.h"
37 #include "wtf/HashMap.h"
38 #include "wtf/Noncopyable.h"
39 #include "wtf/text/WTFString.h"
41 namespace blink {
43 class DevToolsHost;
44 class WebLocalFrameImpl;
46 class WebDevToolsFrontendImpl final : public WebDevToolsFrontend, public InspectorFrontendClient {
47 WTF_MAKE_NONCOPYABLE(WebDevToolsFrontendImpl);
48 public:
49 WebDevToolsFrontendImpl(WebLocalFrameImpl*, WebDevToolsFrontendClient*);
50 ~WebDevToolsFrontendImpl() override;
52 void didClearWindowObject(WebLocalFrameImpl*);
54 void sendMessageToBackend(const WTF::String&) override;
56 void sendMessageToEmbedder(const WTF::String&) override;
58 bool isUnderTest() override;
60 void showContextMenu(LocalFrame*, float x, float y, PassRefPtrWillBeRawPtr<ContextMenuProvider>) override;
62 void setInjectedScriptForOrigin(const String& origin, const String& source) override;
64 private:
65 // TODO(Oilpan): Make the lifetime of m_webFrame clear to remove this GC_PLUGIN_IGNORE.
66 GC_PLUGIN_IGNORE("http://crbug.com/509911")
67 WebLocalFrameImpl* m_webFrame;
68 WebDevToolsFrontendClient* m_client;
69 RefPtrWillBePersistent<DevToolsHost> m_devtoolsHost;
70 typedef HashMap<String, String> InjectedScriptForOriginMap;
71 InjectedScriptForOriginMap m_injectedScriptForOrigin;
74 } // namespace blink
76 #endif