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

Side by Side Diff: Source/core/testing/InternalSettings.h

Issue 1060863003: Add initial link preload support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix uninit member :/ Created 5 years, 8 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
« no previous file with comments | « Source/core/loader/LinkLoader.cpp ('k') | Source/core/testing/InternalSettings.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « Source/core/loader/LinkLoader.cpp ('k') | Source/core/testing/InternalSettings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698