| OLD | NEW |
| 1 // Copyright (c) 2008 The Native Client Authors. All rights reserved. | 1 // Copyright (c) 2008 The Native Client Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "native_client/src/trusted/plugin/browser_interface.h" |
| 5 #include "native_client/src/trusted/plugin/npapi/video.h" | 6 #include "native_client/src/trusted/plugin/npapi/video.h" |
| 6 #include "native_client/src/trusted/plugin/srpc/browser_interface.h" | |
| 7 | 7 |
| 8 // This file provides empty implementation for video functions used in NaCl code | 8 // This file provides empty implementation for video functions used in NaCl code |
| 9 // These functions should not be used when running as part of Chrome, but to | 9 // These functions should not be used when running as part of Chrome, but to |
| 10 // avoid multiple changes in many places in the code, we just provide this | 10 // avoid multiple changes in many places in the code, we just provide this |
| 11 // dummy implementation. | 11 // dummy implementation. |
| 12 | 12 |
| 13 namespace plugin { | 13 namespace plugin { |
| 14 | 14 |
| 15 class Plugin; | 15 class Plugin; |
| 16 | 16 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 return; | 126 return; |
| 127 } | 127 } |
| 128 | 128 |
| 129 VideoMap::VideoMap(Plugin* plugin) { | 129 VideoMap::VideoMap(Plugin* plugin) { |
| 130 } | 130 } |
| 131 | 131 |
| 132 VideoMap::~VideoMap() { | 132 VideoMap::~VideoMap() { |
| 133 } | 133 } |
| 134 | 134 |
| 135 } // namespace plugin | 135 } // namespace plugin |
| OLD | NEW |