Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(526)

Side by Side Diff: webkit/glue/webview_impl.cc

Issue 212004: Implement WebKitTabToLinksPreferenceKey for the test_shell.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698