| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 virtual void setPageEncoding(const WebString& encoding); | 198 virtual void setPageEncoding(const WebString& encoding); |
| 199 virtual bool isTransparent() const; | 199 virtual bool isTransparent() const; |
| 200 virtual void setIsTransparent(bool value); | 200 virtual void setIsTransparent(bool value); |
| 201 virtual bool tabsToLinks() const; | 201 virtual bool tabsToLinks() const; |
| 202 virtual void setTabsToLinks(bool value); | 202 virtual void setTabsToLinks(bool value); |
| 203 virtual bool tabKeyCyclesThroughElements() const; | 203 virtual bool tabKeyCyclesThroughElements() const; |
| 204 virtual void setTabKeyCyclesThroughElements(bool value); | 204 virtual void setTabKeyCyclesThroughElements(bool value); |
| 205 virtual bool isActive() const; | 205 virtual bool isActive() const; |
| 206 virtual void setIsActive(bool value); | 206 virtual void setIsActive(bool value); |
| 207 virtual void setDomainRelaxationForbidden(bool, const WebString& scheme); | 207 virtual void setDomainRelaxationForbidden(bool, const WebString& scheme); |
| 208 virtual void setWindowFeatures(const WebWindowFeatures&); |
| 208 virtual bool dispatchBeforeUnloadEvent(); | 209 virtual bool dispatchBeforeUnloadEvent(); |
| 209 virtual void dispatchUnloadEvent(); | 210 virtual void dispatchUnloadEvent(); |
| 210 virtual WebFrame* mainFrame(); | 211 virtual WebFrame* mainFrame(); |
| 211 virtual WebFrame* findFrameByName( | 212 virtual WebFrame* findFrameByName( |
| 212 const WebString& name, WebFrame* relativeToFrame); | 213 const WebString& name, WebFrame* relativeToFrame); |
| 213 virtual WebFrame* focusedFrame(); | 214 virtual WebFrame* focusedFrame(); |
| 214 virtual void setFocusedFrame(WebFrame* frame); | 215 virtual void setFocusedFrame(WebFrame* frame); |
| 215 virtual void setInitialFocus(bool reverse); | 216 virtual void setInitialFocus(bool reverse); |
| 216 virtual void clearFocusedNode(); | 217 virtual void clearFocusedNode(); |
| 217 virtual void scrollFocusedNodeIntoView(); | 218 virtual void scrollFocusedNodeIntoView(); |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 831 bool m_showFPSCounter; | 832 bool m_showFPSCounter; |
| 832 bool m_showPaintRects; | 833 bool m_showPaintRects; |
| 833 bool m_showDebugBorders; | 834 bool m_showDebugBorders; |
| 834 bool m_continuousPaintingEnabled; | 835 bool m_continuousPaintingEnabled; |
| 835 bool m_showScrollBottleneckRects; | 836 bool m_showScrollBottleneckRects; |
| 836 }; | 837 }; |
| 837 | 838 |
| 838 } // namespace WebKit | 839 } // namespace WebKit |
| 839 | 840 |
| 840 #endif | 841 #endif |
| OLD | NEW |