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

Side by Side Diff: content/common/content_constants.h

Issue 7831028: Compute pageScaleFactor on page so that fixed layout page fits width of window. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 3 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // A handful of resource-like constants related to the Content application. 5 // A handful of resource-like constants related to the Content application.
6 6
7 #ifndef CONTENT_COMMON_CHROME_CONSTANTS_H_ 7 #ifndef CONTENT_COMMON_CHROME_CONSTANTS_H_
8 #define CONTENT_COMMON_CHROME_CONSTANTS_H_ 8 #define CONTENT_COMMON_CHROME_CONSTANTS_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 12 matching lines...) Expand all
23 23
24 // The maximum number of characters in the URL that we're willing to accept 24 // The maximum number of characters in the URL that we're willing to accept
25 // in the browser process. It is set low enough to avoid damage to the browser 25 // in the browser process. It is set low enough to avoid damage to the browser
26 // but high enough that a web site can abuse location.hash for a little storage. 26 // but high enough that a web site can abuse location.hash for a little storage.
27 // We have different values for "max accepted" and "max displayed" because 27 // We have different values for "max accepted" and "max displayed" because
28 // a data: URI may be legitimately massive, but the full URI would kill all 28 // a data: URI may be legitimately massive, but the full URI would kill all
29 // known operating systems if you dropped it into a UI control. 29 // known operating systems if you dropped it into a UI control.
30 extern const size_t kMaxURLChars; 30 extern const size_t kMaxURLChars;
31 extern const size_t kMaxURLDisplayChars; 31 extern const size_t kMaxURLDisplayChars;
32 32
33 // Min and max scaling factors for pinch-zooming on touch platforms.
34 extern const float kMinPageScaleFactor;
35 extern const float kMaxPageScaleFactor;
36
33 } // namespace content 37 } // namespace content
34 38
35 #endif // CONTENT_COMMON_CHROME_CONSTANTS_H_ 39 #endif // CONTENT_COMMON_CHROME_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698