| 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 25 matching lines...) Expand all Loading... |
| 36 #include "sky/engine/public/web/WebFrame.h" | 36 #include "sky/engine/public/web/WebFrame.h" |
| 37 #include "sky/engine/public/web/WebNavigatorContentUtilsClient.h" | 37 #include "sky/engine/public/web/WebNavigatorContentUtilsClient.h" |
| 38 #include "sky/engine/public/web/WebPageVisibilityState.h" | 38 #include "sky/engine/public/web/WebPageVisibilityState.h" |
| 39 #include "sky/engine/public/web/WebTextAffinity.h" | 39 #include "sky/engine/public/web/WebTextAffinity.h" |
| 40 #include "sky/engine/public/web/WebTextDirection.h" | 40 #include "sky/engine/public/web/WebTextDirection.h" |
| 41 #include "sky/engine/public/web/WebWidgetClient.h" | 41 #include "sky/engine/public/web/WebWidgetClient.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 class ServiceProvider; | 45 class ServiceProvider; |
| 46 class WebCompositorOutputSurface; | |
| 47 class WebElement; | 46 class WebElement; |
| 48 class WebHitTestResult; | 47 class WebHitTestResult; |
| 49 class WebImage; | 48 class WebImage; |
| 50 class WebKeyboardEvent; | 49 class WebKeyboardEvent; |
| 51 class WebNode; | 50 class WebNode; |
| 52 class WebRange; | 51 class WebRange; |
| 53 class WebURL; | 52 class WebURL; |
| 54 class WebURLRequest; | 53 class WebURLRequest; |
| 55 class WebView; | 54 class WebView; |
| 56 class WebWidget; | 55 class WebWidget; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 return WebPageVisibilityStateVisible; | 140 return WebPageVisibilityStateVisible; |
| 142 } | 141 } |
| 143 | 142 |
| 144 protected: | 143 protected: |
| 145 ~WebViewClient() { } | 144 ~WebViewClient() { } |
| 146 }; | 145 }; |
| 147 | 146 |
| 148 } // namespace blink | 147 } // namespace blink |
| 149 | 148 |
| 150 #endif // SKY_ENGINE_PUBLIC_WEB_WEBVIEWCLIENT_H_ | 149 #endif // SKY_ENGINE_PUBLIC_WEB_WEBVIEWCLIENT_H_ |
| OLD | NEW |