[M71 Dev][Tizen] Upgrade chromium-efl rpm version
[platform/framework/web/chromium-efl.git] / tizen_src / chromium_impl / content / gpu / shared_mailbox_manager.cc
1 // Copyright 2015 Samsung Electronics. 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 #include "shared_mailbox_manager.h"
6
7 #include "gpu/command_buffer/service/mailbox_manager_impl.h"
8
9 namespace content {
10
11 #if !defined(EWK_BRINGUP)  // FIXME: m67 bringup
12 // static
13 gpu::gles2::MailboxManager* SharedMailboxManager::GetMailboxManager() {
14   static gpu::gles2::MailboxManager mailbox_manager_ =
15       new gpu::gles2::MailboxManagerImpl();
16   return mailbox_manager_;
17 }
18 #endif  // !defined(EWK_BRINGUP)
19 }