| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 56 |
| 57 namespace blink { | 57 namespace blink { |
| 58 | 58 |
| 59 class Frame; | 59 class Frame; |
| 60 class OpenedFrameTracker; | 60 class OpenedFrameTracker; |
| 61 class Visitor; | 61 class Visitor; |
| 62 class WebData; | 62 class WebData; |
| 63 class WebDataSource; | 63 class WebDataSource; |
| 64 class WebDocument; | 64 class WebDocument; |
| 65 class WebElement; | 65 class WebElement; |
| 66 class WebFormElement; | |
| 67 class WebFrameClient; | |
| 68 class WebInputElement; | |
| 69 class WebLayer; | 66 class WebLayer; |
| 70 class WebLocalFrame; | 67 class WebLocalFrame; |
| 71 class WebPerformance; | 68 class WebPerformance; |
| 72 class WebPermissionClient; | 69 class WebPermissionClient; |
| 73 class WebRange; | 70 class WebRange; |
| 74 class WebRemoteFrame; | 71 class WebRemoteFrame; |
| 75 class WebSecurityOrigin; | 72 class WebSecurityOrigin; |
| 76 class WebSharedWorkerRepositoryClient; | 73 class WebSharedWorkerRepositoryClient; |
| 77 class WebString; | 74 class WebString; |
| 78 class WebURL; | 75 class WebURL; |
| (...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; | 692 WebPrivateOwnPtr<OpenedFrameTracker> m_openedFrameTracker; |
| 696 }; | 693 }; |
| 697 | 694 |
| 698 #if BLINK_IMPLEMENTATION | 695 #if BLINK_IMPLEMENTATION |
| 699 Frame* toCoreFrame(const WebFrame*); | 696 Frame* toCoreFrame(const WebFrame*); |
| 700 #endif | 697 #endif |
| 701 | 698 |
| 702 } // namespace blink | 699 } // namespace blink |
| 703 | 700 |
| 704 #endif | 701 #endif |
| OLD | NEW |