Home | History | Annotate | Download | only in corewm
      1 // Copyright (c) 2012 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.
      4 
      5 #include "ui/views/corewm/corewm_switches.h"
      6 
      7 #include "base/command_line.h"
      8 
      9 namespace views {
     10 namespace corewm {
     11 namespace switches {
     12 
     13 const char kNoDropShadows[] = "aura-no-shadows";
     14 
     15 // If present animations are disabled.
     16 const char kWindowAnimationsDisabled[] =
     17     "views-corewm-window-animations-disabled";
     18 
     19 }  // namespace switches
     20 }  // namespace corewm
     21 }  // namespace views
     22