diff options
author | alexmos <alexmos@chromium.org> | 2015-03-12 16:17:59 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-12 23:19:24 +0000 |
commit | 999e4c26444e68898d4fa642783263b6e408b7e3 (patch) | |
tree | 9462e841bf87a8c9fb4671909543330c0eb21a00 /ui/views/views_delegate.cc | |
parent | 25448ed3024720e7b829e8135fa046dfc05304d2 (diff) | |
download | chromium_src-999e4c26444e68898d4fa642783263b6e408b7e3.zip chromium_src-999e4c26444e68898d4fa642783263b6e408b7e3.tar.gz chromium_src-999e4c26444e68898d4fa642783263b6e408b7e3.tar.bz2 |
Revert of Resurrect Aura Linux accessibility. (patchset #15 id:280001 of https://codereview.chromium.org/975113002/)
Reason for revert:
Caused compile failure on Linux x64 bot (http://build.chromium.org/p/chromium.chrome/builders/Google%20Chrome%20Linux%20x64/builds/56532)
Output snippet:
FAILED: cd ../../chrome; flock -- /tmp/linux_package_lock bash ../out/Release/installer/debian/build.sh -o../out/Release -b ../out/Release -a x64 -c unstable
dpkg-shlibdeps: warning: binaries to analyze should already be installed in their package's directory.
2a3
> libatk1.0-0 (>= 1.12.4)
ERROR: Shared library dependencies changed!
If this is intentional, please update:
chrome/installer/linux/debian/expected_deps_ia32
chrome/installer/linux/debian/expected_deps_x64
Original issue's description:
> Resurrect Aura Linux accessibility.
>
> This is based in part on the ATK code we had as part of the Linux GTK port
> that went away, but now rewritten on top of AXPlatformNode. This patch
> successfully exposes an accessibility tree for Views and exposes top-level
> windows and the the role and name of each View. You can test it using
> accerciser. This is just to get the infrastructure in place - we need to
> implement more of the interface for it to be useful for accessibility tools.
>
> BUG=463671
>
> Committed: https://crrev.com/f65bad877350b5f7857d29e4b1b0d4d3f5c7cb6d
> Cr-Commit-Position: refs/heads/master@{#320383}
TBR=plundblad@chromium.org,dpranke@chromium.org,sky@chromium.org,gunsch@chromium.org,dmazzoni@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=463671
Review URL: https://codereview.chromium.org/1002993002
Cr-Commit-Position: refs/heads/master@{#320402}
Diffstat (limited to 'ui/views/views_delegate.cc')
-rw-r--r-- | ui/views/views_delegate.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ui/views/views_delegate.cc b/ui/views/views_delegate.cc index 4c1ae4f..de9ccbb 100644 --- a/ui/views/views_delegate.cc +++ b/ui/views/views_delegate.cc @@ -4,7 +4,6 @@ #include "ui/views/views_delegate.h" -#include "base/command_line.h" #include "ui/views/views_touch_selection_controller_factory.h" namespace views { @@ -86,11 +85,6 @@ ui::ContextFactory* ViewsDelegate::GetContextFactory() { return NULL; } -std::string ViewsDelegate::GetApplicationName() { - base::FilePath program = base::CommandLine::ForCurrentProcess()->GetProgram(); - return program.BaseName().AsUTF8Unsafe(); -} - #if defined(OS_WIN) int ViewsDelegate::GetAppbarAutohideEdges(HMONITOR monitor, const base::Closure& callback) { |