Add a stub __cxa_demangle to disable LLVM's demangler.
[chromium-blink-merge.git] / ui / aura / client / window_stacking_client.cc
blob8f909766d64205458e9fc424ac1ac0b308f308f0
1 // Copyright (c) 2013 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.
5 #include "ui/aura/client/window_stacking_client.h"
7 namespace aura {
8 namespace client {
10 namespace {
12 WindowStackingClient* instance = NULL;
14 } // namespace
16 void SetWindowStackingClient(WindowStackingClient* client) {
17 instance = client;
20 WindowStackingClient* GetWindowStackingClient() {
21 return instance;
24 } // namespace client
25 } // namespace aura