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

Side by Side Diff: components/tracing/common/graphics_memory_dump_provider_android.cc

Issue 2028043002: tracing: restructure to the components/tracing folder (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/tracing/graphics_memory_dump_provider_android.h" 5 #include "components/tracing/common/graphics_memory_dump_provider_android.h"
6 6
7 #include <fcntl.h> 7 #include <fcntl.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <string.h> 9 #include <string.h>
10 #include <sys/socket.h> 10 #include <sys/socket.h>
11 #include <sys/time.h> 11 #include <sys/time.h>
12 #include <sys/types.h> 12 #include <sys/types.h>
13 #include <sys/un.h> 13 #include <sys/un.h>
14 14
15 #include "base/files/scoped_file.h" 15 #include "base/files/scoped_file.h"
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 mad->AddScalar(long_lived_column_name->c_str(), 138 mad->AddScalar(long_lived_column_name->c_str(),
139 MemoryAllocatorDump::kUnitsBytes, value); 139 MemoryAllocatorDump::kUnitsBytes, value);
140 } 140 }
141 } 141 }
142 142
143 GraphicsMemoryDumpProvider::GraphicsMemoryDumpProvider() {} 143 GraphicsMemoryDumpProvider::GraphicsMemoryDumpProvider() {}
144 144
145 GraphicsMemoryDumpProvider::~GraphicsMemoryDumpProvider() {} 145 GraphicsMemoryDumpProvider::~GraphicsMemoryDumpProvider() {}
146 146
147 } // namespace tracing 147 } // namespace tracing
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698