summaryrefslogtreecommitdiffstats
path: root/ui/base/linux_ui.cc
blob: 0f9ed4cf5ccc0e10aaf756f1e0e83df28e67a368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/base/linux_ui.h"

namespace {

ui::LinuxUI* g_linux_ui = NULL;

}  // namespace

namespace ui {

void LinuxUI::SetInstance(LinuxUI* instance) {
  delete g_linux_ui;
  g_linux_ui = instance;
}

const LinuxUI* LinuxUI::instance() {
  return g_linux_ui;
}

}  // namespace ui