| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 class WebMediaPlayer; | 68 class WebMediaPlayer; |
| 69 class WebMediaPlayerClient; | 69 class WebMediaPlayerClient; |
| 70 class WebMIDIClient; | 70 class WebMIDIClient; |
| 71 class WebNotificationPresenter; | 71 class WebNotificationPresenter; |
| 72 class WebServiceWorkerProvider; | 72 class WebServiceWorkerProvider; |
| 73 class WebServiceWorkerProviderClient; | 73 class WebServiceWorkerProviderClient; |
| 74 class WebSocketHandle; | 74 class WebSocketHandle; |
| 75 class WebNode; | 75 class WebNode; |
| 76 class WebPlugin; | 76 class WebPlugin; |
| 77 class WebRTCPeerConnectionHandler; | 77 class WebRTCPeerConnectionHandler; |
| 78 class WebScreenOrientationClient; |
| 78 class WebSharedWorker; | 79 class WebSharedWorker; |
| 79 class WebSharedWorkerClient; | 80 class WebSharedWorkerClient; |
| 80 class WebSocketStreamHandle; | 81 class WebSocketStreamHandle; |
| 81 class WebString; | 82 class WebString; |
| 82 class WebURL; | 83 class WebURL; |
| 83 class WebURLLoader; | 84 class WebURLLoader; |
| 84 class WebURLResponse; | 85 class WebURLResponse; |
| 85 class WebUserMediaClient; | 86 class WebUserMediaClient; |
| 86 class WebWorkerPermissionClientProxy; | 87 class WebWorkerPermissionClientProxy; |
| 87 struct WebColorSuggestion; | 88 struct WebColorSuggestion; |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 504 // Extensions3D.h in WebCore/platform/graphics). | 505 // Extensions3D.h in WebCore/platform/graphics). |
| 505 virtual void didLoseWebGLContext(WebLocalFrame*, int) { } | 506 virtual void didLoseWebGLContext(WebLocalFrame*, int) { } |
| 506 | 507 |
| 507 // FIXME: Remove this method once we have input routing in the browser | 508 // FIXME: Remove this method once we have input routing in the browser |
| 508 // process. See http://crbug.com/339659. | 509 // process. See http://crbug.com/339659. |
| 509 virtual void forwardInputEvent(const WebInputEvent*) { } | 510 virtual void forwardInputEvent(const WebInputEvent*) { } |
| 510 | 511 |
| 511 // Send initial drawing parameters to a child frame that is being rendered o
ut of process. | 512 // Send initial drawing parameters to a child frame that is being rendered o
ut of process. |
| 512 virtual void initializeChildFrame(const WebRect& frameRect, float scaleFacto
r) { } | 513 virtual void initializeChildFrame(const WebRect& frameRect, float scaleFacto
r) { } |
| 513 | 514 |
| 515 |
| 516 // Screen Orientation -------------------------------------------------- |
| 517 |
| 518 // Access the embedder API for (client-based) screen orientation client . |
| 519 virtual WebScreenOrientationClient* webScreenOrientationClient() { return 0;
} |
| 520 |
| 514 protected: | 521 protected: |
| 515 virtual ~WebFrameClient() { } | 522 virtual ~WebFrameClient() { } |
| 516 }; | 523 }; |
| 517 | 524 |
| 518 } // namespace blink | 525 } // namespace blink |
| 519 | 526 |
| 520 #endif | 527 #endif |
| OLD | NEW |