| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 void setScrollTopLeftInteropEnabled(bool); | 126 void setScrollTopLeftInteropEnabled(bool); |
| 127 void setLinkHeaderEnabled(bool); | 127 void setLinkHeaderEnabled(bool); |
| 128 | 128 |
| 129 DECLARE_VIRTUAL_TRACE(); | 129 DECLARE_VIRTUAL_TRACE(); |
| 130 | 130 |
| 131 void setAvailablePointerTypes(const String&, ExceptionState&); | 131 void setAvailablePointerTypes(const String&, ExceptionState&); |
| 132 void setPrimaryPointerType(const String&, ExceptionState&); | 132 void setPrimaryPointerType(const String&, ExceptionState&); |
| 133 void setAvailableHoverTypes(const String&, ExceptionState&); | 133 void setAvailableHoverTypes(const String&, ExceptionState&); |
| 134 void setPrimaryHoverType(const String&, ExceptionState&); | 134 void setPrimaryHoverType(const String&, ExceptionState&); |
| 135 void setDnsPrefetchLogging(bool, ExceptionState&); | 135 void setDnsPrefetchLogging(bool, ExceptionState&); |
| 136 void setPreloadLogging(bool, ExceptionState&); |
| 136 | 137 |
| 137 private: | 138 private: |
| 138 explicit InternalSettings(Page&); | 139 explicit InternalSettings(Page&); |
| 139 | 140 |
| 140 Settings* settings() const; | 141 Settings* settings() const; |
| 141 Page* page() const { return m_page; } | 142 Page* page() const { return m_page; } |
| 142 static const char* supplementName(); | 143 static const char* supplementName(); |
| 143 | 144 |
| 144 RawPtrWillBeWeakMember<Page> m_page; | 145 RawPtrWillBeWeakMember<Page> m_page; |
| 145 Backup m_backup; | 146 Backup m_backup; |
| 146 }; | 147 }; |
| 147 | 148 |
| 148 } // namespace blink | 149 } // namespace blink |
| 149 | 150 |
| 150 #endif // InternalSettings_h | 151 #endif // InternalSettings_h |
| OLD | NEW |