1 // Copyright 2018 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "base/win/vector.h" 6 7 namespace base { 8 namespace win { 9 namespace internal { 10 get_CollectionChange(ABI::Windows::Foundation::Collections::CollectionChange * value)11HRESULT VectorChangedEventArgs::get_CollectionChange( 12 ABI::Windows::Foundation::Collections::CollectionChange* value) { 13 *value = change_; 14 return S_OK; 15 } 16 get_Index(unsigned int * value)17HRESULT VectorChangedEventArgs::get_Index(unsigned int* value) { 18 *value = index_; 19 return S_OK; 20 } 21 22 } // namespace internal 23 } // namespace win 24 } // namespace base 25