| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | |
| 4 * | |
| 5 * Redistribution and use in source and binary forms, with or without | |
| 6 * modification, are permitted provided that the following conditions are | |
| 7 * met: | |
| 8 * | |
| 9 * * Redistributions of source code must retain the above copyright | |
| 10 * notice, this list of conditions and the following disclaimer. | |
| 11 * * Redistributions in binary form must reproduce the above | |
| 12 * copyright notice, this list of conditions and the following disclaimer | |
| 13 * in the documentation and/or other materials provided with the | |
| 14 * distribution. | |
| 15 * * Neither the name of Google Inc. nor the names of its | |
| 16 * contributors may be used to endorse or promote products derived from | |
| 17 * this software without specific prior written permission. | |
| 18 * | |
| 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| 20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| 21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
| 22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
| 23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
| 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 30 */ | |
| 31 | |
| 32 #ifndef SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ | |
| 33 #define SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ | |
| 34 | |
| 35 #include "sky/engine/core/page/ChromeClient.h" | |
| 36 #include "sky/engine/platform/weborigin/KURL.h" | |
| 37 #include "sky/engine/public/platform/WebColor.h" | |
| 38 #include "sky/engine/public/web/WebNavigationPolicy.h" | |
| 39 #include "sky/engine/wtf/PassOwnPtr.h" | |
| 40 | |
| 41 namespace blink { | |
| 42 class ColorChooser; | |
| 43 class ColorChooserClient; | |
| 44 class Element; | |
| 45 class Event; | |
| 46 class KeyboardEvent; | |
| 47 class RenderBox; | |
| 48 class DateTimeChooser; | |
| 49 class DateTimeChooserClient; | |
| 50 class WebViewImpl; | |
| 51 | |
| 52 // Handles window-level notifications from WebCore on behalf of a WebView. | |
| 53 class ChromeClientImpl final : public ChromeClient { | |
| 54 public: | |
| 55 explicit ChromeClientImpl(WebViewImpl* webView); | |
| 56 virtual ~ChromeClientImpl(); | |
| 57 | |
| 58 virtual void* webView() const override; | |
| 59 | |
| 60 // ChromeClient methods: | |
| 61 virtual void setWindowRect(const FloatRect&) override; | |
| 62 virtual FloatRect windowRect() override; | |
| 63 virtual void focus() override; | |
| 64 virtual bool canTakeFocus(FocusType) override; | |
| 65 virtual void takeFocus(FocusType) override; | |
| 66 virtual void focusedNodeChanged(Node*) override; | |
| 67 virtual void focusedFrameChanged(LocalFrame*) override; | |
| 68 | |
| 69 virtual bool shouldReportDetailedMessageForSource(const WTF::String&) overri
de; | |
| 70 virtual void addMessageToConsole( | |
| 71 LocalFrame*, MessageSource, MessageLevel, | |
| 72 const WTF::String& message, unsigned lineNumber, | |
| 73 const WTF::String& sourceID, const WTF::String& stackTrace) override; | |
| 74 virtual void scheduleVisualUpdate() override; | |
| 75 virtual IntRect rootViewToScreen(const IntRect&) const override; | |
| 76 virtual WebScreenInfo screenInfo() const override; | |
| 77 | |
| 78 // ChromeClient methods: | |
| 79 virtual String acceptLanguages() override; | |
| 80 | |
| 81 private: | |
| 82 WebNavigationPolicy getNavigationPolicy(); | |
| 83 | |
| 84 WebViewImpl* m_webView; // weak pointer | |
| 85 }; | |
| 86 | |
| 87 } // namespace blink | |
| 88 | |
| 89 #endif // SKY_ENGINE_WEB_CHROMECLIENTIMPL_H_ | |
| OLD | NEW |