Chromium Code Reviews| 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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 737 WebFrame* m_parent; | 737 WebFrame* m_parent; |
| 738 WebFrame* m_previousSibling; | 738 WebFrame* m_previousSibling; |
| 739 WebFrame* m_nextSibling; | 739 WebFrame* m_nextSibling; |
| 740 WebFrame* m_firstChild; | 740 WebFrame* m_firstChild; |
| 741 WebFrame* m_lastChild; | 741 WebFrame* m_lastChild; |
| 742 | 742 |
| 743 WebFrame* m_opener; | 743 WebFrame* m_opener; |
| 744 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; | 744 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; |
| 745 }; | 745 }; |
| 746 | 746 |
| 747 #if BLINK_IMPLEMENTATION | |
| 748 Frame* toCoreFrame(const WebFrame*); | |
|
dtapuska
2015/12/04 16:08:05
Its not clear to me why this is being removed in t
Rick Byers
2015/12/04 16:28:11
Oh right, sorry. I went to use this API in my tes
| |
| 749 #endif | |
| 750 | |
| 751 } // namespace blink | 747 } // namespace blink |
| 752 | 748 |
| 753 #endif | 749 #endif |
| OLD | NEW |