diff options
author | lgarron <lgarron@chromium.org> | 2015-07-10 00:39:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-10 07:41:48 +0000 |
commit | 145aaa8a7762909442a684415333ebce4f65a229 (patch) | |
tree | ced809b5822f9a1d00d2cd42c5a2c84ce1dc2456 /content/browser/web_contents/web_contents_impl.h | |
parent | cd131d403bc15f9a7aca116b14d08268a3c6aded (diff) | |
download | chromium_src-145aaa8a7762909442a684415333ebce4f65a229.zip chromium_src-145aaa8a7762909442a684415333ebce4f65a229.tar.gz chromium_src-145aaa8a7762909442a684415333ebce4f65a229.tar.bz2 |
Route 'Select All' OS method through RenderWidgetHostDelegate.
This allows Cmd-A / "Select All" to be used on SSL interstitials on OSX.
BUG=507416
Review URL: https://codereview.chromium.org/1212373009
Cr-Commit-Position: refs/heads/master@{#338248}
Diffstat (limited to 'content/browser/web_contents/web_contents_impl.h')
-rw-r--r-- | content/browser/web_contents/web_contents_impl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h index 0ebb78b..3ef5847 100644 --- a/content/browser/web_contents/web_contents_impl.h +++ b/content/browser/web_contents/web_contents_impl.h @@ -567,10 +567,11 @@ class CONTENT_EXPORT WebContentsImpl BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() override; - // Following three functions are already listed under WebContents overrides. + // The following 4 functions are already listed under WebContents overrides: // void Cut() override; // void Copy() override; // void Paste() override; + // void SelectAll() override; void MoveRangeSelectionExtent(const gfx::Point& extent) override; void SelectRange(const gfx::Point& base, const gfx::Point& extent) override; |