| 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 WebString AssignedName() const override; | 93 WebString AssignedName() const override; |
| 94 void SetName(const WebString&) override; | 94 void SetName(const WebString&) override; |
| 95 WebVector<WebIconURL> IconURLs(int icon_types_mask) const override; | 95 WebVector<WebIconURL> IconURLs(int icon_types_mask) const override; |
| 96 void SetSharedWorkerRepositoryClient( | 96 void SetSharedWorkerRepositoryClient( |
| 97 WebSharedWorkerRepositoryClient*) override; | 97 WebSharedWorkerRepositoryClient*) override; |
| 98 WebSize GetScrollOffset() const override; | 98 WebSize GetScrollOffset() const override; |
| 99 void SetScrollOffset(const WebSize&) override; | 99 void SetScrollOffset(const WebSize&) override; |
| 100 WebSize ContentsSize() const override; | 100 WebSize ContentsSize() const override; |
| 101 bool HasVisibleContent() const override; | 101 bool HasVisibleContent() const override; |
| 102 WebRect VisibleContentRect() const override; | 102 WebRect VisibleContentRect() const override; |
| 103 bool HasHorizontalScrollbar() const override; | |
| 104 bool HasVerticalScrollbar() const override; | |
| 105 WebView* View() const override; | 103 WebView* View() const override; |
| 106 WebDocument GetDocument() const override; | 104 WebDocument GetDocument() const override; |
| 107 WebPerformance Performance() const override; | 105 WebPerformance Performance() const override; |
| 108 void DispatchUnloadEvent() override; | 106 void DispatchUnloadEvent() override; |
| 109 void ExecuteScript(const WebScriptSource&) override; | 107 void ExecuteScript(const WebScriptSource&) override; |
| 110 void ExecuteScriptInIsolatedWorld(int world_id, | 108 void ExecuteScriptInIsolatedWorld(int world_id, |
| 111 const WebScriptSource* sources, | 109 const WebScriptSource* sources, |
| 112 unsigned num_sources) override; | 110 unsigned num_sources) override; |
| 113 void SetIsolatedWorldSecurityOrigin(int world_id, | 111 void SetIsolatedWorldSecurityOrigin(int world_id, |
| 114 const WebSecurityOrigin&) override; | 112 const WebSecurityOrigin&) override; |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 | 531 |
| 534 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 532 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
| 535 WebFrame, | 533 WebFrame, |
| 536 frame, | 534 frame, |
| 537 frame->IsWebLocalFrame(), | 535 frame->IsWebLocalFrame(), |
| 538 frame.IsWebLocalFrame()); | 536 frame.IsWebLocalFrame()); |
| 539 | 537 |
| 540 } // namespace blink | 538 } // namespace blink |
| 541 | 539 |
| 542 #endif | 540 #endif |
| OLD | NEW |