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

Side by Side Diff: webkit/glue/webpreferences.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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 "webkit/glue/webpreferences.h" 5 #include "webkit/glue/webpreferences.h"
6 6
7 #include "base/string_util.h" 7 #include "base/string_util.h"
8 #include "webkit/api/public/WebKit.h" 8 #include "webkit/api/public/WebKit.h"
9 #include "webkit/api/public/WebSettings.h" 9 #include "webkit/api/public/WebSettings.h"
10 #include "webkit/api/public/WebString.h" 10 #include "webkit/api/public/WebString.h"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 settings->setAllowUniversalAccessFromFileURLs( 70 settings->setAllowUniversalAccessFromFileURLs(
71 allow_universal_access_from_file_urls); 71 allow_universal_access_from_file_urls);
72 72
73 // We prevent WebKit from checking if it needs to add a "text direction" 73 // We prevent WebKit from checking if it needs to add a "text direction"
74 // submenu to a context menu. it is not only because we don't need the result 74 // submenu to a context menu. it is not only because we don't need the result
75 // but also because it cause a possible crash in Editor::hasBidiSelection(). 75 // but also because it cause a possible crash in Editor::hasBidiSelection().
76 settings->setTextDirectionSubmenuInclusionBehaviorNeverIncluded(); 76 settings->setTextDirectionSubmenuInclusionBehaviorNeverIncluded();
77 77
78 // Web inspector settings need to be passed in differently. 78 // Web inspector settings need to be passed in differently.
79 web_view->SetInspectorSettings(inspector_settings); 79 web_view->SetInspectorSettings(inspector_settings);
80
81 // Tabs to link is not part of the settings. WebCore calls
82 // ChromeClient::tabsToLinks which is part of the glue code.
83 web_view->SetTabsToLinks(tabs_to_links);
80 } 84 }
OLDNEW
« no previous file with comments | « webkit/glue/webpreferences.h ('k') | webkit/glue/webview.h » ('j') | webkit/glue/webview.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698