summaryrefslogtreecommitdiffstats
path: root/ui/linux_ui/linux_ui.cc
blob: 40ead2fc9fa32ecabd1c07f88c762a1bc5ce5a0b (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
25
26
27
28
// 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/linux_ui/linux_ui.h"

#include "ui/shell_dialogs/linux_shell_dialog.h"

namespace {

ui::LinuxUI* g_linux_ui = NULL;

}  // namespace

namespace ui {

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

  LinuxShellDialog::SetInstance(instance);
}

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

}  // namespace ui