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

Side by Side Diff: pdf/resource_consts.h

Issue 1504943003: Cleanup: Remove unused pdf resource header files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « pdf/resource.h ('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
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PDF_RESOURCE_RESOURCE_CONSTS_H_
6 #define PDF_RESOURCE_RESOURCE_CONSTS_H_
7
8 #include "base/basictypes.h"
9
10 namespace chrome_pdf {
11
12 const int kDragTimerMs = 50;
13 const double kMinZoom = 0.1;
14 const double kMaxZoom = 10.0;
15 const double kZoomStep = 1.2;
16
17 const uint32 kFadingTimeoutMs = 50;
18
19 const uint32 kToolbarId = 10;
20 const uint32 kThumbnailsId = 11;
21 const uint32 kProgressBarId = 12;
22 const uint32 kPageIndicatorId = 13;
23 const uint32 kFitToPageButtonId = 100;
24 const uint32 kFitToWidthButtonId = 101;
25 const uint32 kZoomOutButtonId = 102;
26 const uint32 kZoomInButtonId = 103;
27 const uint32 kSaveButtonId = 104;
28 const uint32 kPrintButtonId = 105;
29
30 const uint32 kAutoScrollId = 200;
31
32 // fading_rect.left = button_rect.left - kToolbarFadingOffsetLeft
33 const int32 kToolbarFadingOffsetLeft = 40;
34 // fading_rect.top = button_rect.top - kToolbarFadingOffsetTop
35 const int32 kToolbarFadingOffsetTop = 40;
36 // fading_rect.right = button_rect.right + kToolbarFadingOffsetRight
37 const int32 kToolbarFadingOffsetRight = 10;
38 // fading_rect.bottom = button_rect.bottom + kToolbarFadingOffsetBottom
39 const int32 kToolbarFadingOffsetBottom = 8;
40
41 const int32 kProgressOffsetLeft = 8;
42 const int32 kProgressOffsetBottom = 8;
43
44 // Width of the thumbnails control.
45 const int32 kThumbnailsWidth = 196;
46
47 } // namespace chrome_pdf
48
49 #endif // PDF_RESOURCE_RESOURCE_CONSTS_H_
OLDNEW
« no previous file with comments | « pdf/resource.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698