| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 bool javaScriptCanOpenWindowsAutomatically; | 71 bool javaScriptCanOpenWindowsAutomatically; |
| 72 bool supportsMultipleWindows; | 72 bool supportsMultipleWindows; |
| 73 bool javaScriptEnabled; | 73 bool javaScriptEnabled; |
| 74 bool loadsImagesAutomatically; | 74 bool loadsImagesAutomatically; |
| 75 bool localStorageEnabled; | 75 bool localStorageEnabled; |
| 76 bool offlineWebApplicationCacheEnabled; | 76 bool offlineWebApplicationCacheEnabled; |
| 77 bool pluginsEnabled; | 77 bool pluginsEnabled; |
| 78 bool shrinksStandaloneImagesToFit; | 78 bool shrinksStandaloneImagesToFit; |
| 79 bool textAreasAreResizable; | 79 bool textAreasAreResizable; |
| 80 WebKit::WebURL userStyleSheetLocation; | 80 WebKit::WebURL userStyleSheetLocation; |
| 81 bool usesPageCache; | |
| 82 bool pageCacheSupportsPlugins; | |
| 83 bool webSecurityEnabled; | 81 bool webSecurityEnabled; |
| 84 bool allowUniversalAccessFromFileURLs; | 82 bool allowUniversalAccessFromFileURLs; |
| 85 WebKit::WebSettings::EditingBehavior editingBehavior; | 83 WebKit::WebSettings::EditingBehavior editingBehavior; |
| 86 bool tabsToLinks; | 84 bool tabsToLinks; |
| 87 bool hyperlinkAuditingEnabled; | 85 bool hyperlinkAuditingEnabled; |
| 88 bool caretBrowsingEnabled; | 86 bool caretBrowsingEnabled; |
| 89 bool acceleratedCompositingForVideoEnabled; | 87 bool acceleratedCompositingForVideoEnabled; |
| 90 bool acceleratedCompositingForFixedPositionEnabled; | 88 bool acceleratedCompositingForFixedPositionEnabled; |
| 91 bool acceleratedCompositingForOverflowScrollEnabled; | 89 bool acceleratedCompositingForOverflowScrollEnabled; |
| 92 bool acceleratedCompositingEnabled; | 90 bool acceleratedCompositingEnabled; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 104 bool touchDragDropEnabled; | 102 bool touchDragDropEnabled; |
| 105 | 103 |
| 106 WebPreferences() { reset(); } | 104 WebPreferences() { reset(); } |
| 107 void reset(); | 105 void reset(); |
| 108 void applyTo(WebKit::WebView*); | 106 void applyTo(WebKit::WebView*); |
| 109 }; | 107 }; |
| 110 | 108 |
| 111 } | 109 } |
| 112 | 110 |
| 113 #endif // WebPreferences_h | 111 #endif // WebPreferences_h |
| OLD | NEW |