| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 class WebString; | 73 class WebString; |
| 74 class WebURL; | 74 class WebURL; |
| 75 class WebURLLoader; | 75 class WebURLLoader; |
| 76 class WebURLRequest; | 76 class WebURLRequest; |
| 77 class WebView; | 77 class WebView; |
| 78 enum class WebSandboxFlags; | 78 enum class WebSandboxFlags; |
| 79 struct WebConsoleMessage; | 79 struct WebConsoleMessage; |
| 80 struct WebFindOptions; | 80 struct WebFindOptions; |
| 81 struct WebFloatPoint; | 81 struct WebFloatPoint; |
| 82 struct WebFloatRect; | 82 struct WebFloatRect; |
| 83 struct WebFrameOwnerProperties; |
| 83 struct WebPoint; | 84 struct WebPoint; |
| 84 struct WebPrintParams; | 85 struct WebPrintParams; |
| 85 struct WebRect; | 86 struct WebRect; |
| 86 struct WebScriptSource; | 87 struct WebScriptSource; |
| 87 struct WebSize; | 88 struct WebSize; |
| 88 struct WebURLLoaderOptions; | 89 struct WebURLLoaderOptions; |
| 89 | 90 |
| 90 template <typename T> class WebVector; | 91 template <typename T> class WebVector; |
| 91 | 92 |
| 92 // Frames may be rendered in process ('local') or out of process ('remote'). | 93 // Frames may be rendered in process ('local') or out of process ('remote'). |
| (...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; | 737 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; |
| 737 }; | 738 }; |
| 738 | 739 |
| 739 #if BLINK_IMPLEMENTATION | 740 #if BLINK_IMPLEMENTATION |
| 740 Frame* toCoreFrame(const WebFrame*); | 741 Frame* toCoreFrame(const WebFrame*); |
| 741 #endif | 742 #endif |
| 742 | 743 |
| 743 } // namespace blink | 744 } // namespace blink |
| 744 | 745 |
| 745 #endif | 746 #endif |
| OLD | NEW |