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

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

Issue 13818030: Added primary input devices setting to blink to allow media queries for hover/pointer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Review fixes Created 7 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
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 void setDialogElementEnabled(bool, ExceptionCode&); 117 void setDialogElementEnabled(bool, ExceptionCode&);
118 void setShouldDisplayTrackKind(const String& kind, bool enabled, ExceptionCo de&); 118 void setShouldDisplayTrackKind(const String& kind, bool enabled, ExceptionCo de&);
119 bool shouldDisplayTrackKind(const String& kind, ExceptionCode&); 119 bool shouldDisplayTrackKind(const String& kind, ExceptionCode&);
120 void setStorageBlockingPolicy(const String&, ExceptionCode&); 120 void setStorageBlockingPolicy(const String&, ExceptionCode&);
121 void setLangAttributeAwareFormControlUIEnabled(bool); 121 void setLangAttributeAwareFormControlUIEnabled(bool);
122 void setImagesEnabled(bool enabled, ExceptionCode&); 122 void setImagesEnabled(bool enabled, ExceptionCode&);
123 void setMinimumTimerInterval(double intervalInSeconds, ExceptionCode&); 123 void setMinimumTimerInterval(double intervalInSeconds, ExceptionCode&);
124 void setDefaultVideoPosterURL(const String& url, ExceptionCode&); 124 void setDefaultVideoPosterURL(const String& url, ExceptionCode&);
125 void setTimeWithoutMouseMovementBeforeHidingControls(double time, ExceptionC ode&); 125 void setTimeWithoutMouseMovementBeforeHidingControls(double time, ExceptionC ode&);
126 void setUseLegacyBackgroundSizeShorthandBehavior(bool enabled, ExceptionCode &); 126 void setUseLegacyBackgroundSizeShorthandBehavior(bool enabled, ExceptionCode &);
127 void setPrimaryPointerDevices(const String&, ExceptionCode&);
127 128
128 private: 129 private:
129 explicit InternalSettings(Page*); 130 explicit InternalSettings(Page*);
130 131
131 Settings* settings() const; 132 Settings* settings() const;
132 Page* page() const { return m_page; } 133 Page* page() const { return m_page; }
133 static const char* supplementName(); 134 static const char* supplementName();
134 135
135 Page* m_page; 136 Page* m_page;
136 Backup m_backup; 137 Backup m_backup;
137 }; 138 };
138 139
139 } // namespace WebCore 140 } // namespace WebCore
140 141
141 #endif 142 #endif
OLDNEW
« no previous file with comments | « Source/WebCore/platform/chromium/PopupMenuChromium.cpp ('k') | Source/WebCore/testing/InternalSettings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698