| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "content/common/gpu/stream_texture_android.h" | 5 #include "content/common/gpu/stream_texture_android.h" |
| 6 | 6 |
| 7 #include <string.h> | 7 #include <string.h> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/strings/stringize_macros.h" | 10 #include "base/strings/stringize_macros.h" |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 NOTREACHED(); | 368 NOTREACHED(); |
| 369 return false; | 369 return false; |
| 370 } | 370 } |
| 371 | 371 |
| 372 void StreamTexture::OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd, | 372 void StreamTexture::OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd, |
| 373 uint64_t process_tracing_id, | 373 uint64_t process_tracing_id, |
| 374 const std::string& dump_name) { | 374 const std::string& dump_name) { |
| 375 // TODO(ericrk): Add OnMemoryDump for GLImages. crbug.com/514914 | 375 // TODO(ericrk): Add OnMemoryDump for GLImages. crbug.com/514914 |
| 376 } | 376 } |
| 377 | 377 |
| 378 bool StreamTexture::EmulatingRGB() const { |
| 379 return false; |
| 380 } |
| 381 |
| 378 } // namespace content | 382 } // namespace content |
| OLD | NEW |