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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 virtual void setWindowRect(const FloatRect&) override { } | 74 virtual void setWindowRect(const FloatRect&) override { } |
75 virtual FloatRect windowRect() override { return FloatRect(); } | 75 virtual FloatRect windowRect() override { return FloatRect(); } |
76 | 76 |
77 virtual FloatRect pageRect() override { return FloatRect(); } | 77 virtual FloatRect pageRect() override { return FloatRect(); } |
78 | 78 |
79 virtual void focus() override { } | 79 virtual void focus() override { } |
80 | 80 |
81 virtual bool canTakeFocus(WebFocusType) override { return false; } | 81 virtual bool canTakeFocus(WebFocusType) override { return false; } |
82 virtual void takeFocus(WebFocusType) override { } | 82 virtual void takeFocus(WebFocusType) override { } |
83 | 83 |
84 virtual void focusedNodeChanged(Node*) override { } | 84 virtual void focusedNodeChanged(Node*, Node*) override { } |
85 virtual void focusedFrameChanged(LocalFrame*) override { } | 85 virtual void focusedFrameChanged(LocalFrame*) override { } |
86 virtual Page* createWindow(LocalFrame*, const FrameLoadRequest&, const Windo
wFeatures&, NavigationPolicy, ShouldSendReferrer) override { return 0; } | 86 virtual Page* createWindow(LocalFrame*, const FrameLoadRequest&, const Windo
wFeatures&, NavigationPolicy, ShouldSendReferrer) override { return 0; } |
87 virtual void show(NavigationPolicy) override { } | 87 virtual void show(NavigationPolicy) override { } |
88 | 88 |
89 virtual bool canRunModal() override { return false; } | 89 virtual bool canRunModal() override { return false; } |
90 virtual void runModal() override { } | 90 virtual void runModal() override { } |
91 | 91 |
92 virtual void setToolbarsVisible(bool) override { } | 92 virtual void setToolbarsVisible(bool) override { } |
93 virtual bool toolbarsVisible() override { return false; } | 93 virtual bool toolbarsVisible() override { return false; } |
94 | 94 |
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 public: | 327 public: |
328 virtual PassOwnPtr<StorageNamespace> createSessionStorageNamespace() overrid
e; | 328 virtual PassOwnPtr<StorageNamespace> createSessionStorageNamespace() overrid
e; |
329 virtual bool canAccessStorage(LocalFrame*, StorageType) const override { ret
urn false; } | 329 virtual bool canAccessStorage(LocalFrame*, StorageType) const override { ret
urn false; } |
330 }; | 330 }; |
331 | 331 |
332 void fillWithEmptyClients(Page::PageClients&); | 332 void fillWithEmptyClients(Page::PageClients&); |
333 | 333 |
334 } | 334 } |
335 | 335 |
336 #endif // EmptyClients_h | 336 #endif // EmptyClients_h |
OLD | NEW |