| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 void chromeDestroyed() override; | 56 void chromeDestroyed() override; |
| 57 void setWindowRect(const IntRect&) override; | 57 void setWindowRect(const IntRect&) override; |
| 58 IntRect windowRect() override; | 58 IntRect windowRect() override; |
| 59 IntRect pageRect() override; | 59 IntRect pageRect() override; |
| 60 void focus() override; | 60 void focus() override; |
| 61 bool canTakeFocus(WebFocusType) override; | 61 bool canTakeFocus(WebFocusType) override; |
| 62 void takeFocus(WebFocusType) override; | 62 void takeFocus(WebFocusType) override; |
| 63 void focusedNodeChanged(Node* fromNode, Node* toNode) override; | 63 void focusedNodeChanged(Node* fromNode, Node* toNode) override; |
| 64 void focusedFrameChanged(LocalFrame*) override; | 64 void focusedFrameChanged(LocalFrame*) override; |
| 65 Page* createWindow( | 65 Page* createWindow( |
| 66 LocalFrame*, const FrameLoadRequest&, const WindowFeatures&, NavigationP
olicy, ShouldSendReferrer) override; | 66 LocalFrame*, const FrameLoadRequest&, const WindowFeatures&, NavigationP
olicy, ShouldSendReferrer, CreateWindowReason) override; |
| 67 void show(NavigationPolicy) override; | 67 void show(NavigationPolicy, CreateWindowReason) override; |
| 68 void didOverscroll(const FloatSize&, const FloatSize&, const FloatPoint&, co
nst FloatSize&) override; | 68 void didOverscroll(const FloatSize&, const FloatSize&, const FloatPoint&, co
nst FloatSize&) override; |
| 69 void setToolbarsVisible(bool) override; | 69 void setToolbarsVisible(bool) override; |
| 70 bool toolbarsVisible() override; | 70 bool toolbarsVisible() override; |
| 71 void setStatusbarVisible(bool) override; | 71 void setStatusbarVisible(bool) override; |
| 72 bool statusbarVisible() override; | 72 bool statusbarVisible() override; |
| 73 void setScrollbarsVisible(bool) override; | 73 void setScrollbarsVisible(bool) override; |
| 74 bool scrollbarsVisible() override; | 74 bool scrollbarsVisible() override; |
| 75 void setMenubarVisible(bool) override; | 75 void setMenubarVisible(bool) override; |
| 76 bool menubarVisible() override; | 76 bool menubarVisible() override; |
| 77 void setResizable(bool) override; | 77 void setResizable(bool) override; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 WindowFeatures m_windowFeatures; | 181 WindowFeatures m_windowFeatures; |
| 182 Vector<PopupOpeningObserver*> m_popupOpeningObservers; | 182 Vector<PopupOpeningObserver*> m_popupOpeningObservers; |
| 183 Cursor m_lastSetMouseCursorForTesting; | 183 Cursor m_lastSetMouseCursorForTesting; |
| 184 }; | 184 }; |
| 185 | 185 |
| 186 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 186 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 187 | 187 |
| 188 } // namespace blink | 188 } // namespace blink |
| 189 | 189 |
| 190 #endif | 190 #endif |
| OLD | NEW |