| Index: chrome/browser/chromeos/login/wizard_accessibility_handler.h
|
| ===================================================================
|
| --- chrome/browser/chromeos/login/wizard_accessibility_handler.h (revision 0)
|
| +++ chrome/browser/chromeos/login/wizard_accessibility_handler.h (revision 0)
|
| @@ -0,0 +1,26 @@
|
| +// Copyright (c) 2010 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.
|
| +
|
| +#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_ACCESSIBILITY_HANDLER_H_
|
| +#define CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_ACCESSIBILITY_HANDLER_H_
|
| +#pragma once
|
| +
|
| +#include "chrome/common/notification_observer.h"
|
| +#include "chrome/common/notification_source.h"
|
| +#include "chrome/common/notification_type.h"
|
| +
|
| +// Class that handles the accessibility notifications and generates
|
| +// appropriate spoken/audio feedback.
|
| +class WizardAccessibilityHandler : public NotificationObserver {
|
| + private:
|
| + // Speaks the specified string.
|
| + void Speak(const char* speak_str);
|
| +
|
| + // Override from NotificationObserver.
|
| + virtual void Observe(NotificationType type,
|
| + const NotificationSource& source,
|
| + const NotificationDetails& details);
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_CHROMEOS_LOGIN_WIZARD_ACCESSIBILITY_HANDLER_H_
|
|
|
| Property changes on: chrome/browser/chromeos/login/wizard_accessibility_handler.h
|
| ___________________________________________________________________
|
| Name: svn:eol-style
|
| + LF
|
|
|
|
|