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

Side by Side Diff: Source/core/frame/Settings.cpp

Issue 186443002: [Do Not Submit] Fingerprint and Supercluster debugging logic Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/rendering/FastTextAutosizer.h » ('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) 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserv ed.
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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 static const bool defaultSmartInsertDeleteEnabled = true; 56 static const bool defaultSmartInsertDeleteEnabled = true;
57 #else 57 #else
58 static const bool defaultSmartInsertDeleteEnabled = false; 58 static const bool defaultSmartInsertDeleteEnabled = false;
59 #endif 59 #endif
60 #if OS(WIN) 60 #if OS(WIN)
61 static const bool defaultSelectTrailingWhitespaceEnabled = true; 61 static const bool defaultSelectTrailingWhitespaceEnabled = true;
62 #else 62 #else
63 static const bool defaultSelectTrailingWhitespaceEnabled = false; 63 static const bool defaultSelectTrailingWhitespaceEnabled = false;
64 #endif 64 #endif
65 65
66 #define HACK_FORCE_TEXT_AUTOSIZING_ON_DESKTOP 1
67
66 Settings::Settings() 68 Settings::Settings()
67 : m_openGLMultisamplingEnabled(false) 69 : m_openGLMultisamplingEnabled(false)
68 #if HACK_FORCE_TEXT_AUTOSIZING_ON_DESKTOP 70 #if HACK_FORCE_TEXT_AUTOSIZING_ON_DESKTOP
69 , m_textAutosizingWindowSizeOverride(320, 480) 71 , m_textAutosizingWindowSizeOverride(320, 480)
70 , m_textAutosizingEnabled(true) 72 , m_textAutosizingEnabled(true)
71 #else 73 #else
72 , m_textAutosizingEnabled(false) 74 , m_textAutosizingEnabled(false)
73 #endif 75 #endif
74 SETTINGS_INITIALIZER_LIST 76 SETTINGS_INITIALIZER_LIST
75 { 77 {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 void Settings::setOpenGLMultisamplingEnabled(bool flag) 127 void Settings::setOpenGLMultisamplingEnabled(bool flag)
126 { 128 {
127 if (m_openGLMultisamplingEnabled == flag) 129 if (m_openGLMultisamplingEnabled == flag)
128 return; 130 return;
129 131
130 m_openGLMultisamplingEnabled = flag; 132 m_openGLMultisamplingEnabled = flag;
131 invalidate(SettingsDelegate::MultisamplingChange); 133 invalidate(SettingsDelegate::MultisamplingChange);
132 } 134 }
133 135
134 } // namespace WebCore 136 } // namespace WebCore
OLDNEW
« no previous file with comments | « no previous file | Source/core/rendering/FastTextAutosizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698