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

Side by Side Diff: public/web/WebSettings.h

Issue 704363004: Add an accessibility setting to expose password values. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address feedback Created 6 years, 1 month 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/web/WebSettingsImpl.cpp ('k') | no next file » | 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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 virtual void setAccelerated2dCanvasMSAASampleCount(int) = 0; 93 virtual void setAccelerated2dCanvasMSAASampleCount(int) = 0;
94 virtual void setAcceleratedCompositingEnabled(bool) = 0; 94 virtual void setAcceleratedCompositingEnabled(bool) = 0;
95 virtual void setPreferCompositingToLCDTextEnabled(bool) = 0; 95 virtual void setPreferCompositingToLCDTextEnabled(bool) = 0;
96 // Not implemented yet, see http://crbug.com/178119 96 // Not implemented yet, see http://crbug.com/178119
97 virtual void setAcceleratedCompositingForTransitionEnabled(bool) { }; 97 virtual void setAcceleratedCompositingForTransitionEnabled(bool) { };
98 // If set to true, allows frames with an https origin to display passive 98 // If set to true, allows frames with an https origin to display passive
99 // contents at an insecure URL. Otherwise, disallows it. The 99 // contents at an insecure URL. Otherwise, disallows it. The
100 // FrameLoaderClient set to the frame may override the value set by this 100 // FrameLoaderClient set to the frame may override the value set by this
101 // method. 101 // method.
102 virtual void setAccessibilityEnabled(bool) = 0; 102 virtual void setAccessibilityEnabled(bool) = 0;
103 virtual void setAccessibilityPasswordValuesEnabled(bool) = 0;
103 virtual void setAllowDisplayOfInsecureContent(bool) = 0; 104 virtual void setAllowDisplayOfInsecureContent(bool) = 0;
104 virtual void setAllowFileAccessFromFileURLs(bool) = 0; 105 virtual void setAllowFileAccessFromFileURLs(bool) = 0;
105 virtual void setAllowCustomScrollbarInMainFrame(bool) = 0; 106 virtual void setAllowCustomScrollbarInMainFrame(bool) = 0;
106 // If set to true, allows frames with an https origin to run active 107 // If set to true, allows frames with an https origin to run active
107 // contents at an insecure URL. This includes WebSockets. Otherwise, 108 // contents at an insecure URL. This includes WebSockets. Otherwise,
108 // disallows it. The FrameLoaderClient set to the frame may override the 109 // disallows it. The FrameLoaderClient set to the frame may override the
109 // value set by this method. 110 // value set by this method.
110 virtual void setAllowRunningOfInsecureContent(bool) = 0; 111 virtual void setAllowRunningOfInsecureContent(bool) = 0;
111 // If set to true, allows frames with an https origin to connect WebSockets 112 // If set to true, allows frames with an https origin to connect WebSockets
112 // with an insecure URL (ws://). Otherwise, disallows it. Only when this is 113 // with an insecure URL (ws://). Otherwise, disallows it. Only when this is
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 virtual void setWideViewportQuirkEnabled(bool) = 0; 238 virtual void setWideViewportQuirkEnabled(bool) = 0;
238 virtual void setXSSAuditorEnabled(bool) = 0; 239 virtual void setXSSAuditorEnabled(bool) = 0;
239 240
240 protected: 241 protected:
241 ~WebSettings() { } 242 ~WebSettings() { }
242 }; 243 };
243 244
244 } // namespace blink 245 } // namespace blink
245 246
246 #endif 247 #endif
OLDNEW
« no previous file with comments | « Source/web/WebSettingsImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698