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

Side by Side Diff: chrome/browser/task_profiler/task_profiler_data_serializer.h

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 12 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
OLDNEW
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 #ifndef CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ 5 #ifndef CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_
6 #define CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ 6 #define CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/macros.h"
9 #include "base/process/process_handle.h" 9 #include "base/process/process_handle.h"
10 #include "components/metrics/proto/profiler_event.pb.h" 10 #include "components/metrics/proto/profiler_event.pb.h"
11 11
12 namespace base { 12 namespace base {
13 class DictionaryValue; 13 class DictionaryValue;
14 class FilePath; 14 class FilePath;
15 } 15 }
16 16
17 namespace tracked_objects { 17 namespace tracked_objects {
18 struct ProcessDataPhaseSnapshot; 18 struct ProcessDataPhaseSnapshot;
(...skipping 15 matching lines...) Expand all
34 metrics::ProfilerEventProto::TrackedObject::ProcessType process_type, 34 metrics::ProfilerEventProto::TrackedObject::ProcessType process_type,
35 base::DictionaryValue* dictionary); 35 base::DictionaryValue* dictionary);
36 36
37 private: 37 private:
38 DISALLOW_COPY_AND_ASSIGN(TaskProfilerDataSerializer); 38 DISALLOW_COPY_AND_ASSIGN(TaskProfilerDataSerializer);
39 }; 39 };
40 40
41 } // namespace task_profiler 41 } // namespace task_profiler
42 42
43 #endif // CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_ 43 #endif // CHROME_BROWSER_TASK_PROFILER_TASK_PROFILER_DATA_SERIALIZER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698