| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) | 2 * Copyright (C) 2006 Eric Seidel (eric@webkit.org) |
| 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 6 * | 6 * |
| 7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
| 8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
| 9 * are met: | 9 * are met: |
| 10 * 1. Redistributions of source code must retain the above copyright | 10 * 1. Redistributions of source code must retain the above copyright |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 | 90 |
| 91 virtual IntRect rootViewToScreen(const IntRect& r) const override { return r
; } | 91 virtual IntRect rootViewToScreen(const IntRect& r) const override { return r
; } |
| 92 virtual blink::WebScreenInfo screenInfo() const override { return blink::Web
ScreenInfo(); } | 92 virtual blink::WebScreenInfo screenInfo() const override { return blink::Web
ScreenInfo(); } |
| 93 | 93 |
| 94 virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned) overrid
e { } | 94 virtual void mouseDidMoveOverElement(const HitTestResult&, unsigned) overrid
e { } |
| 95 | 95 |
| 96 virtual void setToolTip(const String&, TextDirection) override { } | 96 virtual void setToolTip(const String&, TextDirection) override { } |
| 97 | 97 |
| 98 virtual void setCursor(const Cursor&) override { } | 98 virtual void setCursor(const Cursor&) override { } |
| 99 | 99 |
| 100 virtual void attachRootGraphicsLayer(GraphicsLayer*) override { } | |
| 101 | |
| 102 virtual void setTouchAction(TouchAction touchAction) override { }; | 100 virtual void setTouchAction(TouchAction touchAction) override { }; |
| 103 | 101 |
| 104 virtual String acceptLanguages() override; | 102 virtual String acceptLanguages() override; |
| 105 }; | 103 }; |
| 106 | 104 |
| 107 class EmptyFrameLoaderClient : public FrameLoaderClient { | 105 class EmptyFrameLoaderClient : public FrameLoaderClient { |
| 108 WTF_MAKE_NONCOPYABLE(EmptyFrameLoaderClient); WTF_MAKE_FAST_ALLOCATED; | 106 WTF_MAKE_NONCOPYABLE(EmptyFrameLoaderClient); WTF_MAKE_FAST_ALLOCATED; |
| 109 public: | 107 public: |
| 110 EmptyFrameLoaderClient() { } | 108 EmptyFrameLoaderClient() { } |
| 111 virtual ~EmptyFrameLoaderClient() { } | 109 virtual ~EmptyFrameLoaderClient() { } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 virtual bool canPaste(LocalFrame*, bool defaultValue) const override { retur
n defaultValue; } | 183 virtual bool canPaste(LocalFrame*, bool defaultValue) const override { retur
n defaultValue; } |
| 186 | 184 |
| 187 virtual bool handleKeyboardEvent() override { return false; } | 185 virtual bool handleKeyboardEvent() override { return false; } |
| 188 }; | 186 }; |
| 189 | 187 |
| 190 void fillWithEmptyClients(Page::PageClients&); | 188 void fillWithEmptyClients(Page::PageClients&); |
| 191 | 189 |
| 192 } | 190 } |
| 193 | 191 |
| 194 #endif // SKY_ENGINE_CORE_LOADER_EMPTYCLIENTS_H_ | 192 #endif // SKY_ENGINE_CORE_LOADER_EMPTYCLIENTS_H_ |
| OLD | NEW |