root/ui/wm/core/shadow_types.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. SetShadowType
  2. GetShadowType

// 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/wm/core/shadow_types.h"

#include "ui/aura/window_property.h"

DECLARE_WINDOW_PROPERTY_TYPE(wm::ShadowType);

namespace wm {

void SetShadowType(aura::Window* window, ShadowType shadow_type) {
  window->SetProperty(kShadowTypeKey, shadow_type);
}

ShadowType GetShadowType(aura::Window* window) {
  return window->GetProperty(kShadowTypeKey);
}

DEFINE_WINDOW_PROPERTY_KEY(ShadowType, kShadowTypeKey, SHADOW_TYPE_NONE);

}  // namespace wm

/* [<][>][^][v][top][bottom][index][help] */