OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium 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 "remoting/host/plugin/host_plugin_utils.h" | 5 #include "remoting/host/plugin/host_plugin_utils.h" |
6 | 6 |
7 namespace remoting { | 7 namespace remoting { |
8 | 8 |
9 NPNetscapeFuncs* g_npnetscape_funcs = NULL; | 9 NPNetscapeFuncs* g_npnetscape_funcs = NULL; |
10 | 10 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 object_ = object; | 66 object_ = object; |
67 return *this; | 67 return *this; |
68 } | 68 } |
69 | 69 |
70 ScopedRefNPObject& ScopedRefNPObject::operator=( | 70 ScopedRefNPObject& ScopedRefNPObject::operator=( |
71 const ScopedRefNPObject& object) { | 71 const ScopedRefNPObject& object) { |
72 return *this = object.get(); | 72 return *this = object.get(); |
73 } | 73 } |
74 | 74 |
75 } // namespace remoting | 75 } // namespace remoting |
OLD | NEW |