| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2009, 2010, 2011, 2012 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 25 matching lines...) Expand all Loading... |
| 36 #include "../platform/WebDragOperation.h" | 36 #include "../platform/WebDragOperation.h" |
| 37 #include "../platform/WebFocusType.h" | 37 #include "../platform/WebFocusType.h" |
| 38 #include "../platform/WebPageVisibilityState.h" | 38 #include "../platform/WebPageVisibilityState.h" |
| 39 #include "../platform/WebString.h" | 39 #include "../platform/WebString.h" |
| 40 #include "../platform/WebVector.h" | 40 #include "../platform/WebVector.h" |
| 41 #include "WebWidget.h" | 41 #include "WebWidget.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class WebAXObject; | 45 class WebAXObject; |
| 46 class WebAutofillClient; | |
| 47 class WebCompositedDisplayList; | 46 class WebCompositedDisplayList; |
| 48 class WebCredentialManagerClient; | 47 class WebCredentialManagerClient; |
| 49 class WebDragData; | |
| 50 class WebFrame; | 48 class WebFrame; |
| 51 class WebHitTestResult; | 49 class WebHitTestResult; |
| 52 class WebLocalFrame; | 50 class WebLocalFrame; |
| 53 class WebPageImportanceSignals; | 51 class WebPageImportanceSignals; |
| 54 class WebPrerendererClient; | 52 class WebPrerendererClient; |
| 55 class WebRemoteFrame; | 53 class WebRemoteFrame; |
| 56 class WebSettings; | 54 class WebSettings; |
| 57 class WebSpellCheckClient; | 55 class WebSpellCheckClient; |
| 58 class WebString; | 56 class WebString; |
| 59 class WebViewClient; | 57 class WebViewClient; |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 // completed. | 497 // completed. |
| 500 WebWidget* widget() { return this; } | 498 WebWidget* widget() { return this; } |
| 501 | 499 |
| 502 protected: | 500 protected: |
| 503 ~WebView() {} | 501 ~WebView() {} |
| 504 }; | 502 }; |
| 505 | 503 |
| 506 } // namespace blink | 504 } // namespace blink |
| 507 | 505 |
| 508 #endif | 506 #endif |
| OLD | NEW |