| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | 4 * Copyright (C) 2014 Opera Software ASA. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 } | 66 } |
| 67 virtual bool WantsWheelEvents() { return false; } | 67 virtual bool WantsWheelEvents() { return false; } |
| 68 virtual bool SupportsKeyboardFocus() const { return false; } | 68 virtual bool SupportsKeyboardFocus() const { return false; } |
| 69 virtual bool SupportsInputMethod() const { return false; } | 69 virtual bool SupportsInputMethod() const { return false; } |
| 70 virtual bool CanProcessDrag() const { return false; } | 70 virtual bool CanProcessDrag() const { return false; } |
| 71 | 71 |
| 72 virtual void DidReceiveResponse(const ResourceResponse&) {} | 72 virtual void DidReceiveResponse(const ResourceResponse&) {} |
| 73 virtual void DidReceiveData(const char*, int) {} | 73 virtual void DidReceiveData(const char*, int) {} |
| 74 | 74 |
| 75 virtual void UpdateAllLifecyclePhases() {} | 75 virtual void UpdateAllLifecyclePhases() {} |
| 76 virtual void InvalidatePaintIfNeeded() {} | 76 virtual void InvalidatePaint() {} |
| 77 }; | 77 }; |
| 78 | 78 |
| 79 } // namespace blink | 79 } // namespace blink |
| 80 | 80 |
| 81 #endif // PluginView_h | 81 #endif // PluginView_h |
| OLD | NEW |