| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |