Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: base/win/enum_variant.h

Issue 1092863002: Apply automated fixits for Chrome clang plugin to base_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix format Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/trace_event/trace_event_win_unittest.cc ('k') | base/win/event_trace_consumer_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef BASE_WIN_ENUM_VARIANT_H_ 5 #ifndef BASE_WIN_ENUM_VARIANT_H_
6 #define BASE_WIN_ENUM_VARIANT_H_ 6 #define BASE_WIN_ENUM_VARIANT_H_
7 7
8 #include <unknwn.h> 8 #include <unknwn.h>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 21 matching lines...) Expand all
32 32
33 // IEnumVARIANT. 33 // IEnumVARIANT.
34 STDMETHODIMP Next(ULONG requested_count, 34 STDMETHODIMP Next(ULONG requested_count,
35 VARIANT* out_elements, 35 VARIANT* out_elements,
36 ULONG* out_elements_received) override; 36 ULONG* out_elements_received) override;
37 STDMETHODIMP Skip(ULONG skip_count) override; 37 STDMETHODIMP Skip(ULONG skip_count) override;
38 STDMETHODIMP Reset() override; 38 STDMETHODIMP Reset() override;
39 STDMETHODIMP Clone(IEnumVARIANT** out_cloned_object) override; 39 STDMETHODIMP Clone(IEnumVARIANT** out_cloned_object) override;
40 40
41 private: 41 private:
42 ~EnumVariant(); 42 ~EnumVariant() override;
43 43
44 scoped_ptr<VARIANT[]> items_; 44 scoped_ptr<VARIANT[]> items_;
45 unsigned long count_; 45 unsigned long count_;
46 unsigned long current_index_; 46 unsigned long current_index_;
47 }; 47 };
48 48
49 } // namespace win 49 } // namespace win
50 } // namespace base 50 } // namespace base
51 51
52 #endif // BASE_WIN_ENUM_VARIANT_H_ 52 #endif // BASE_WIN_ENUM_VARIANT_H_
OLDNEW
« no previous file with comments | « base/trace_event/trace_event_win_unittest.cc ('k') | base/win/event_trace_consumer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698