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

Side by Side Diff: content/public/common/web_preferences.h

Issue 2776073002: Workaround for Samsung email issues (Closed)
Patch Set: add a comment to web_preferences.h Created 3 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ 6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 // TODO(servolk, asvitkine): Query the value directly when it is available in 280 // TODO(servolk, asvitkine): Query the value directly when it is available in
281 // the renderer process. See https://crbug.com/681160. 281 // the renderer process. See https://crbug.com/681160.
282 bool enable_instant_source_buffer_gc; 282 bool enable_instant_source_buffer_gc;
283 283
284 // Whether it is a presentation receiver. 284 // Whether it is a presentation receiver.
285 bool presentation_receiver; 285 bool presentation_receiver;
286 286
287 // If disabled, media controls should never be used. 287 // If disabled, media controls should never be used.
288 bool media_controls_enabled; 288 bool media_controls_enabled;
289 289
290 // Whether we want to disable updating selection on mutating selection range.
291 // This is to work around Samsung's email app issue. See
292 // https://crbug.com/699943 for details.
293 // TODO(changwan): remove this once we no longer support Android N.
294 bool do_not_update_selection_on_mutating_selection_range;
295
290 // We try to keep the default values the same as the default values in 296 // We try to keep the default values the same as the default values in
291 // chrome, except for the cases where it would require lots of extra work for 297 // chrome, except for the cases where it would require lots of extra work for
292 // the embedder to use the same default value. 298 // the embedder to use the same default value.
293 WebPreferences(); 299 WebPreferences();
294 WebPreferences(const WebPreferences& other); 300 WebPreferences(const WebPreferences& other);
295 ~WebPreferences(); 301 ~WebPreferences();
296 }; 302 };
297 303
298 } // namespace content 304 } // namespace content
299 305
300 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ 306 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
OLDNEW
« no previous file with comments | « content/public/common/common_param_traits_macros.h ('k') | content/public/common/web_preferences.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698