Home | History | Annotate | Download | only in accessibility
      1 // Copyright (c) 2011 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/base/accessibility/accessible_view_state.h"
      6 
      7 namespace ui {
      8 
      9 AccessibleViewState::AccessibleViewState()
     10     : role(AccessibilityTypes::ROLE_CLIENT),
     11       state(0),
     12       selection_start(-1),
     13       selection_end(-1),
     14       index(-1),
     15       count(-1) { }
     16 
     17 AccessibleViewState::~AccessibleViewState() { }
     18 
     19 }  // namespace ui
     20