| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 void setContentSettingsClient(WebContentSettingsClient*) override; | 93 void setContentSettingsClient(WebContentSettingsClient*) override; |
| 94 void setSharedWorkerRepositoryClient( | 94 void setSharedWorkerRepositoryClient( |
| 95 WebSharedWorkerRepositoryClient*) override; | 95 WebSharedWorkerRepositoryClient*) override; |
| 96 WebSize getScrollOffset() const override; | 96 WebSize getScrollOffset() const override; |
| 97 void setScrollOffset(const WebSize&) override; | 97 void setScrollOffset(const WebSize&) override; |
| 98 WebSize contentsSize() const override; | 98 WebSize contentsSize() const override; |
| 99 bool hasVisibleContent() const override; | 99 bool hasVisibleContent() const override; |
| 100 WebRect visibleContentRect() const override; | 100 WebRect visibleContentRect() const override; |
| 101 bool hasHorizontalScrollbar() const override; | 101 bool hasHorizontalScrollbar() const override; |
| 102 bool hasVerticalScrollbar() const override; | 102 bool hasVerticalScrollbar() const override; |
| 103 void collapseFrameOwner(bool) override; |
| 103 WebView* view() const override; | 104 WebView* view() const override; |
| 104 WebDocument document() const override; | 105 WebDocument document() const override; |
| 105 WebPerformance performance() const override; | 106 WebPerformance performance() const override; |
| 106 void dispatchUnloadEvent() override; | 107 void dispatchUnloadEvent() override; |
| 107 void executeScript(const WebScriptSource&) override; | 108 void executeScript(const WebScriptSource&) override; |
| 108 void executeScriptInIsolatedWorld(int worldID, | 109 void executeScriptInIsolatedWorld(int worldID, |
| 109 const WebScriptSource* sources, | 110 const WebScriptSource* sources, |
| 110 unsigned numSources, | 111 unsigned numSources, |
| 111 int extensionGroup) override; | 112 int extensionGroup) override; |
| 112 void setIsolatedWorldSecurityOrigin(int worldID, | 113 void setIsolatedWorldSecurityOrigin(int worldID, |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 | 481 |
| 481 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 482 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 482 WebFrame, | 483 WebFrame, |
| 483 frame, | 484 frame, |
| 484 frame->isWebLocalFrame(), | 485 frame->isWebLocalFrame(), |
| 485 frame.isWebLocalFrame()); | 486 frame.isWebLocalFrame()); |
| 486 | 487 |
| 487 } // namespace blink | 488 } // namespace blink |
| 488 | 489 |
| 489 #endif | 490 #endif |
| OLD | NEW |