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

Side by Side Diff: content/gpu/gpu_main.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 (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 #include <stddef.h> 5 #include <stddef.h>
6 #include <stdlib.h> 6 #include <stdlib.h>
7 7
8 #include <memory> 8 #include <memory>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "ui/gl/gpu_switching_manager.h" 44 #include "ui/gl/gpu_switching_manager.h"
45 #include "ui/gl/init/gl_factory.h" 45 #include "ui/gl/init/gl_factory.h"
46 46
47 #if defined(OS_WIN) 47 #if defined(OS_WIN)
48 #include <dwmapi.h> 48 #include <dwmapi.h>
49 #include <windows.h> 49 #include <windows.h>
50 #endif 50 #endif
51 51
52 #if defined(OS_ANDROID) 52 #if defined(OS_ANDROID)
53 #include "base/trace_event/memory_dump_manager.h" 53 #include "base/trace_event/memory_dump_manager.h"
54 #include "components/tracing/graphics_memory_dump_provider_android.h" 54 #include "components/tracing/common/graphics_memory_dump_provider_android.h"
55 #endif 55 #endif
56 56
57 #if defined(OS_WIN) 57 #if defined(OS_WIN)
58 #include "base/win/scoped_com_initializer.h" 58 #include "base/win/scoped_com_initializer.h"
59 #include "base/win/windows_version.h" 59 #include "base/win/windows_version.h"
60 #include "media/gpu/dxva_video_decode_accelerator_win.h" 60 #include "media/gpu/dxva_video_decode_accelerator_win.h"
61 #include "sandbox/win/src/sandbox.h" 61 #include "sandbox/win/src/sandbox.h"
62 #endif 62 #endif
63 63
64 #if defined(USE_X11) 64 #if defined(USE_X11)
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 return true; 617 return true;
618 } 618 }
619 619
620 return false; 620 return false;
621 } 621 }
622 #endif // defined(OS_WIN) 622 #endif // defined(OS_WIN)
623 623
624 } // namespace. 624 } // namespace.
625 625
626 } // namespace content 626 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698