| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WebLocalFrame_h | 5 #ifndef WebLocalFrame_h |
| 6 #define WebLocalFrame_h | 6 #define WebLocalFrame_h |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include "WebCompositionUnderline.h" | 9 #include "WebCompositionUnderline.h" |
| 10 #include "WebFrame.h" | 10 #include "WebFrame.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 class WebAutofillClient; | 26 class WebAutofillClient; |
| 27 class WebContentSettingsClient; | 27 class WebContentSettingsClient; |
| 28 class WebDevToolsAgent; | 28 class WebDevToolsAgent; |
| 29 class WebDevToolsAgentClient; | 29 class WebDevToolsAgentClient; |
| 30 class WebDoubleSize; | 30 class WebDoubleSize; |
| 31 class WebFrameClient; | 31 class WebFrameClient; |
| 32 class WebFrameWidget; | 32 class WebFrameWidget; |
| 33 class WebInputMethodController; | 33 class WebInputMethodController; |
| 34 class WebRange; | 34 class WebRange; |
| 35 class WebScriptExecutionCallback; | 35 class WebScriptExecutionCallback; |
| 36 class WebTextSuggestionController; |
| 36 enum class WebCachePolicy; | 37 enum class WebCachePolicy; |
| 37 enum class WebSandboxFlags; | 38 enum class WebSandboxFlags; |
| 38 enum class WebTreeScopeType; | 39 enum class WebTreeScopeType; |
| 39 struct WebConsoleMessage; | 40 struct WebConsoleMessage; |
| 40 struct WebContentSecurityPolicyViolation; | 41 struct WebContentSecurityPolicyViolation; |
| 41 struct WebFindOptions; | 42 struct WebFindOptions; |
| 42 struct WebFloatRect; | 43 struct WebFloatRect; |
| 43 struct WebPrintPresetOptions; | 44 struct WebPrintPresetOptions; |
| 44 struct WebSourceLocation; | 45 struct WebSourceLocation; |
| 45 | 46 |
| (...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 // to call these on a WebLocalFrame. | 535 // to call these on a WebLocalFrame. |
| 535 bool isWebLocalFrame() const override = 0; | 536 bool isWebLocalFrame() const override = 0; |
| 536 WebLocalFrame* toWebLocalFrame() override = 0; | 537 WebLocalFrame* toWebLocalFrame() override = 0; |
| 537 bool isWebRemoteFrame() const override = 0; | 538 bool isWebRemoteFrame() const override = 0; |
| 538 WebRemoteFrame* toWebRemoteFrame() override = 0; | 539 WebRemoteFrame* toWebRemoteFrame() override = 0; |
| 539 }; | 540 }; |
| 540 | 541 |
| 541 } // namespace blink | 542 } // namespace blink |
| 542 | 543 |
| 543 #endif // WebLocalFrame_h | 544 #endif // WebLocalFrame_h |
| OLD | NEW |