| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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) override; |
| 67 void show(NavigationPolicy) override; | 67 void show(NavigationPolicy) override; |
| 68 void didOverscroll(const FloatSize&, const FloatSize&, const FloatPoint&, co
nst FloatSize&) override; |
| 68 void setToolbarsVisible(bool) override; | 69 void setToolbarsVisible(bool) override; |
| 69 bool toolbarsVisible() override; | 70 bool toolbarsVisible() override; |
| 70 void setStatusbarVisible(bool) override; | 71 void setStatusbarVisible(bool) override; |
| 71 bool statusbarVisible() override; | 72 bool statusbarVisible() override; |
| 72 void setScrollbarsVisible(bool) override; | 73 void setScrollbarsVisible(bool) override; |
| 73 bool scrollbarsVisible() override; | 74 bool scrollbarsVisible() override; |
| 74 void setMenubarVisible(bool) override; | 75 void setMenubarVisible(bool) override; |
| 75 bool menubarVisible() override; | 76 bool menubarVisible() override; |
| 76 void setResizable(bool) override; | 77 void setResizable(bool) override; |
| 77 bool shouldReportDetailedMessageForSource(LocalFrame&, const String&) overri
de; | 78 bool shouldReportDetailedMessageForSource(LocalFrame&, const String&) overri
de; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 WindowFeatures m_windowFeatures; | 178 WindowFeatures m_windowFeatures; |
| 178 Vector<PopupOpeningObserver*> m_popupOpeningObservers; | 179 Vector<PopupOpeningObserver*> m_popupOpeningObservers; |
| 179 Cursor m_lastSetMouseCursorForTesting; | 180 Cursor m_lastSetMouseCursorForTesting; |
| 180 }; | 181 }; |
| 181 | 182 |
| 182 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); | 183 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient
Impl(), client.isChromeClientImpl()); |
| 183 | 184 |
| 184 } // namespace blink | 185 } // namespace blink |
| 185 | 186 |
| 186 #endif | 187 #endif |
| OLD | NEW |