| Index: chrome/browser/resources/help/help_focus_manager.js
|
| diff --git a/chrome/browser/resources/help/help_focus_manager.js b/chrome/browser/resources/help/help_focus_manager.js
|
| deleted file mode 100644
|
| index 335f8fd6da77f9a3ffdd621256c69a65e846f6ea..0000000000000000000000000000000000000000
|
| --- a/chrome/browser/resources/help/help_focus_manager.js
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -// Copyright 2013 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.
|
| -
|
| -// Helper class for help page, that controls focus transition between
|
| -// elements on the help page and overlays.
|
| -cr.define('help', function() {
|
| - function HelpFocusManager() {
|
| - }
|
| -
|
| - cr.addSingletonGetter(HelpFocusManager);
|
| -
|
| - HelpFocusManager.prototype = {
|
| - __proto__: cr.ui.FocusManager.prototype,
|
| -
|
| - getFocusParent: function() {
|
| - var page = help.HelpPage.getTopmostVisiblePage();
|
| - if (!page)
|
| - return null;
|
| - return page.pageDiv;
|
| - },
|
| - };
|
| -
|
| - return {
|
| - HelpFocusManager: HelpFocusManager,
|
| - };
|
| -});
|
|
|