| OLD | NEW |
| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 // Enable experimental WebGL support if requested on command line | 78 // Enable experimental WebGL support if requested on command line |
| 79 // and support is compiled in. | 79 // and support is compiled in. |
| 80 settings->setExperimentalWebGLEnabled(experimental_webgl_enabled); | 80 settings->setExperimentalWebGLEnabled(experimental_webgl_enabled); |
| 81 | 81 |
| 82 // Web inspector settings need to be passed in differently. | 82 // Web inspector settings need to be passed in differently. |
| 83 web_view->SetInspectorSettings(inspector_settings); | 83 web_view->SetInspectorSettings(inspector_settings); |
| 84 | 84 |
| 85 // Tabs to link is not part of the settings. WebCore calls | 85 // Tabs to link is not part of the settings. WebCore calls |
| 86 // ChromeClient::tabsToLinks which is part of the glue code. | 86 // ChromeClient::tabsToLinks which is part of the glue code. |
| 87 web_view->SetTabsToLinks(tabs_to_links); | 87 web_view->setTabsToLinks(tabs_to_links); |
| 88 } | 88 } |
| OLD | NEW |