OLD | NEW |
1 // Copyright (c) 2007-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2007-2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 #include "build/build_config.h" | 6 #include "build/build_config.h" |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 MSVC_PUSH_WARNING_LEVEL(0); | 9 MSVC_PUSH_WARNING_LEVEL(0); |
10 #include "CSSStyleSelector.h" | 10 #include "CSSStyleSelector.h" |
(...skipping 1916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1927 hitTestResultAtPoint(doc_point, false); | 1927 hitTestResultAtPoint(doc_point, false); |
1928 } | 1928 } |
1929 | 1929 |
1930 void WebViewImpl::SetSpellingPanelVisibility(bool is_visible) { | 1930 void WebViewImpl::SetSpellingPanelVisibility(bool is_visible) { |
1931 spelling_panel_is_visible_ = is_visible; | 1931 spelling_panel_is_visible_ = is_visible; |
1932 } | 1932 } |
1933 | 1933 |
1934 bool WebViewImpl::GetSpellingPanelVisibility() { | 1934 bool WebViewImpl::GetSpellingPanelVisibility() { |
1935 return spelling_panel_is_visible_; | 1935 return spelling_panel_is_visible_; |
1936 } | 1936 } |
| 1937 |
| 1938 void WebViewImpl::SetTabsToLinks(bool enable) { |
| 1939 tabs_to_links_ = enable; |
| 1940 } |
| 1941 |
| 1942 bool WebViewImpl::GetTabsToLinks() const { |
| 1943 return tabs_to_links_; |
| 1944 } |
OLD | NEW |