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

Side by Side Diff: content/renderer/render_thread_impl_browsertest.cc

Issue 2684993005: (NotForReview) Enable YUV video overlay on Skylake ChromeOS.
Patch Set: rebase to ToT (Mar/27) Created 3 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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/renderer/render_thread_impl.h" 5 #include "content/renderer/render_thread_impl.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 23 matching lines...) Expand all
34 #include "content/public/test/content_browser_test.h" 34 #include "content/public/test/content_browser_test.h"
35 #include "content/public/test/content_browser_test_utils.h" 35 #include "content/public/test/content_browser_test_utils.h"
36 #include "content/public/test/test_browser_thread_bundle.h" 36 #include "content/public/test/test_browser_thread_bundle.h"
37 #include "content/public/test/test_content_client_initializer.h" 37 #include "content/public/test/test_content_client_initializer.h"
38 #include "content/public/test/test_launcher.h" 38 #include "content/public/test/test_launcher.h"
39 #include "content/public/test/test_service_manager_context.h" 39 #include "content/public/test/test_service_manager_context.h"
40 #include "content/renderer/render_process_impl.h" 40 #include "content/renderer/render_process_impl.h"
41 #include "content/test/mock_render_process.h" 41 #include "content/test/mock_render_process.h"
42 #include "gpu/GLES2/gl2extchromium.h" 42 #include "gpu/GLES2/gl2extchromium.h"
43 #include "gpu/command_buffer/client/gpu_memory_buffer_manager.h" 43 #include "gpu/command_buffer/client/gpu_memory_buffer_manager.h"
44 #include "gpu/ipc/host/gpu_switches.h" 44 #include "gpu/ipc/common/gpu_switches.h"
45 #include "ipc/ipc.mojom.h" 45 #include "ipc/ipc.mojom.h"
46 #include "ipc/ipc_channel_mojo.h" 46 #include "ipc/ipc_channel_mojo.h"
47 #include "mojo/edk/embedder/embedder.h" 47 #include "mojo/edk/embedder/embedder.h"
48 #include "mojo/edk/embedder/pending_process_connection.h" 48 #include "mojo/edk/embedder/pending_process_connection.h"
49 #include "testing/gtest/include/gtest/gtest.h" 49 #include "testing/gtest/include/gtest/gtest.h"
50 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul er.h" 50 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul er.h"
51 #include "ui/gfx/buffer_format_util.h" 51 #include "ui/gfx/buffer_format_util.h"
52 52
53 // IPC messages for testing ---------------------------------------------------- 53 // IPC messages for testing ----------------------------------------------------
54 54
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 // These formats are guaranteed to work on all platforms. 393 // These formats are guaranteed to work on all platforms.
394 ::testing::Values(gfx::BufferFormat::R_8, 394 ::testing::Values(gfx::BufferFormat::R_8,
395 gfx::BufferFormat::BGR_565, 395 gfx::BufferFormat::BGR_565,
396 gfx::BufferFormat::RGBA_4444, 396 gfx::BufferFormat::RGBA_4444,
397 gfx::BufferFormat::RGBA_8888, 397 gfx::BufferFormat::RGBA_8888,
398 gfx::BufferFormat::BGRA_8888, 398 gfx::BufferFormat::BGRA_8888,
399 gfx::BufferFormat::YVU_420))); 399 gfx::BufferFormat::YVU_420)));
400 400
401 } // namespace 401 } // namespace
402 } // namespace content 402 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698