| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 bool experimentalCSSRegionsEnabled; | 56 bool experimentalCSSRegionsEnabled; |
| 57 bool experimentalCSSGridLayoutEnabled; | 57 bool experimentalCSSGridLayoutEnabled; |
| 58 bool javaEnabled; | 58 bool javaEnabled; |
| 59 bool javaScriptCanAccessClipboard; | 59 bool javaScriptCanAccessClipboard; |
| 60 bool javaScriptCanOpenWindowsAutomatically; | 60 bool javaScriptCanOpenWindowsAutomatically; |
| 61 bool supportsMultipleWindows; | 61 bool supportsMultipleWindows; |
| 62 bool javaScriptEnabled; | 62 bool javaScriptEnabled; |
| 63 bool loadsImagesAutomatically; | 63 bool loadsImagesAutomatically; |
| 64 bool offlineWebApplicationCacheEnabled; | 64 bool offlineWebApplicationCacheEnabled; |
| 65 bool pluginsEnabled; | 65 bool pluginsEnabled; |
| 66 blink::WebURL userStyleSheetLocation; | |
| 67 bool allowUniversalAccessFromFileURLs; | 66 bool allowUniversalAccessFromFileURLs; |
| 68 blink::WebSettings::EditingBehavior editingBehavior; | 67 blink::WebSettings::EditingBehavior editingBehavior; |
| 69 bool tabsToLinks; | 68 bool tabsToLinks; |
| 70 bool hyperlinkAuditingEnabled; | 69 bool hyperlinkAuditingEnabled; |
| 71 bool caretBrowsingEnabled; | 70 bool caretBrowsingEnabled; |
| 72 bool cssCustomFilterEnabled; | 71 bool cssCustomFilterEnabled; |
| 73 bool shouldRespectImageOrientation; | 72 bool shouldRespectImageOrientation; |
| 74 bool asynchronousSpellCheckingEnabled; | 73 bool asynchronousSpellCheckingEnabled; |
| 75 | 74 |
| 76 WebPreferences() { reset(); } | 75 WebPreferences() { reset(); } |
| 77 void reset(); | 76 void reset(); |
| 78 }; | 77 }; |
| 79 | 78 |
| 80 } | 79 } |
| 81 | 80 |
| 82 #endif // WebPreferences_h | 81 #endif // WebPreferences_h |
| OLD | NEW |