1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef UI_OZONE_PLATFORM_DRM_GPU_INTER_THREAD_MESSAGING_PROXY_H_
6 #define UI_OZONE_PLATFORM_DRM_GPU_INTER_THREAD_MESSAGING_PROXY_H_
7 
8 #include "base/macros.h"
9 
10 namespace ui {
11 
12 class DrmThread;
13 
14 class InterThreadMessagingProxy {
15  public:
16   virtual ~InterThreadMessagingProxy();
17   virtual void SetDrmThread(DrmThread* thread) = 0;
18 };
19 
20 }  // namespace ui
21 
22 #endif  // UI_OZONE_PLATFORM_DRM_GPU_INTER_THREAD_MESSAGING_PROXY_H_
23