| 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 1924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1935 bool WebViewImpl::GetSpellingPanelVisibility() { | 1935 bool WebViewImpl::GetSpellingPanelVisibility() { |
| 1936 return spelling_panel_is_visible_; | 1936 return spelling_panel_is_visible_; |
| 1937 } | 1937 } |
| 1938 | 1938 |
| 1939 void WebViewImpl::SetTabsToLinks(bool enable) { | 1939 void WebViewImpl::SetTabsToLinks(bool enable) { |
| 1940 tabs_to_links_ = enable; | 1940 tabs_to_links_ = enable; |
| 1941 } | 1941 } |
| 1942 | 1942 |
| 1943 bool WebViewImpl::GetTabsToLinks() const { | 1943 bool WebViewImpl::GetTabsToLinks() const { |
| 1944 return tabs_to_links_; | 1944 return tabs_to_links_; |
| 1945 } | 1945 } |
| OLD | NEW |