~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to libcore/asobj/Accessibility_as.cpp

  • Committer: Package Import Robot
  • Author(s): Micah Gersten
  • Date: 2012-03-04 03:19:06 UTC
  • mfrom: (1.1.18) (3.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20120304031906-p6q5rnb0xhgpof7o
Tags: 0.8.10-3ubuntu1
* Merge from Debian testing (FFe: LP: #940876), remaining changes:
  - Use mozilla-flashplugin as the alternative for now
  - Change xulrunner-dev build dep to firefox-dev
* Drop the plugin API porting patch, this has been fixed upstream
  - drop debian/patches*
* Drop the following change as we want Adobe's player to take priority
  if it's installed
  - Set alternative priority to 50 so that it matches Adobe Flash's priority

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// accessibility_as.cpp:  ActionScript "Accessibility" class, for Gnash.
2
2
//
3
 
//   Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
 
3
//   Copyright (C) 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
4
4
//
5
5
// This program is free software; you can redistribute it and/or modify
6
6
// it under the terms of the GNU General Public License as published by
84
84
as_value
85
85
accessibility_isActive(const fn_call& /*fn*/)
86
86
{
87
 
    LOG_ONCE( log_unimpl (__FUNCTION__) );
 
87
    LOG_ONCE(log_unimpl(__FUNCTION__) );
88
88
    return as_value();
89
89
}
90
90
 
91
91
as_value
92
92
accessibility_updateProperties(const fn_call& /*fn*/)
93
93
{
94
 
    LOG_ONCE( log_unimpl (__FUNCTION__) );
 
94
    LOG_ONCE(log_unimpl(__FUNCTION__) );
95
95
    return as_value();
96
96
}
97
97
 
98
98
as_value
99
99
accessibility_sendEvent(const fn_call& /*fn*/)
100
100
{
101
 
    LOG_ONCE( log_unimpl (__FUNCTION__) );
 
101
    LOG_ONCE(log_unimpl(__FUNCTION__) );
102
102
    return as_value();
103
103
}
104
104
 
107
107
 
108
108
// local Variables:
109
109
// mode: C++
110
 
// indent-tabs-mode: t
 
110
// indent-tabs-mode: nil
111
111
// End:
112
112