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

Side by Side Diff: Source/web/WebScrollbarThemePainter.cpp

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | « Source/web/WebScriptController.cpp ('k') | Source/web/WebSearchableFormData.cpp » ('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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 14 matching lines...) Expand all
25 25
26 #include "config.h" 26 #include "config.h"
27 27
28 #include "public/platform/WebScrollbarThemePainter.h" 28 #include "public/platform/WebScrollbarThemePainter.h"
29 29
30 #include "platform/graphics/GraphicsContext.h" 30 #include "platform/graphics/GraphicsContext.h"
31 #include "platform/scroll/Scrollbar.h" 31 #include "platform/scroll/Scrollbar.h"
32 #include "platform/scroll/ScrollbarTheme.h" 32 #include "platform/scroll/ScrollbarTheme.h"
33 #include "public/platform/WebRect.h" 33 #include "public/platform/WebRect.h"
34 34
35 using namespace WebCore; 35 using namespace blink;
36 36
37 namespace blink { 37 namespace blink {
38 38
39 void WebScrollbarThemePainter::assign(const WebScrollbarThemePainter& painter) 39 void WebScrollbarThemePainter::assign(const WebScrollbarThemePainter& painter)
40 { 40 {
41 // This is a pointer to a static object, so no ownership transferral. 41 // This is a pointer to a static object, so no ownership transferral.
42 m_theme = painter.m_theme; 42 m_theme = painter.m_theme;
43 m_scrollbar = painter.m_scrollbar; 43 m_scrollbar = painter.m_scrollbar;
44 } 44 }
45 45
(...skipping 11 matching lines...) Expand all
57 { 57 {
58 GraphicsContext context(canvas); 58 GraphicsContext context(canvas);
59 context.setCertainlyOpaque(false); 59 context.setCertainlyOpaque(false);
60 m_theme->paintTrackBackground(&context, m_scrollbar, IntRect(rect)); 60 m_theme->paintTrackBackground(&context, m_scrollbar, IntRect(rect));
61 } 61 }
62 62
63 void WebScrollbarThemePainter::paintBackTrackPart(WebCanvas* canvas, const WebRe ct& rect) 63 void WebScrollbarThemePainter::paintBackTrackPart(WebCanvas* canvas, const WebRe ct& rect)
64 { 64 {
65 GraphicsContext context(canvas); 65 GraphicsContext context(canvas);
66 context.setCertainlyOpaque(false); 66 context.setCertainlyOpaque(false);
67 m_theme->paintTrackPiece(&context, m_scrollbar, IntRect(rect), WebCore::Back TrackPart); 67 m_theme->paintTrackPiece(&context, m_scrollbar, IntRect(rect), blink::BackTr ackPart);
68 } 68 }
69 69
70 void WebScrollbarThemePainter::paintForwardTrackPart(WebCanvas* canvas, const We bRect& rect) 70 void WebScrollbarThemePainter::paintForwardTrackPart(WebCanvas* canvas, const We bRect& rect)
71 { 71 {
72 GraphicsContext context(canvas); 72 GraphicsContext context(canvas);
73 context.setCertainlyOpaque(false); 73 context.setCertainlyOpaque(false);
74 m_theme->paintTrackPiece(&context, m_scrollbar, IntRect(rect), WebCore::Forw ardTrackPart); 74 m_theme->paintTrackPiece(&context, m_scrollbar, IntRect(rect), blink::Forwar dTrackPart);
75 } 75 }
76 76
77 void WebScrollbarThemePainter::paintBackButtonStart(WebCanvas* canvas, const Web Rect& rect) 77 void WebScrollbarThemePainter::paintBackButtonStart(WebCanvas* canvas, const Web Rect& rect)
78 { 78 {
79 GraphicsContext context(canvas); 79 GraphicsContext context(canvas);
80 context.setCertainlyOpaque(false); 80 context.setCertainlyOpaque(false);
81 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), WebCore::BackButt onStartPart); 81 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), blink::BackButton StartPart);
82 } 82 }
83 83
84 void WebScrollbarThemePainter::paintBackButtonEnd(WebCanvas* canvas, const WebRe ct& rect) 84 void WebScrollbarThemePainter::paintBackButtonEnd(WebCanvas* canvas, const WebRe ct& rect)
85 { 85 {
86 GraphicsContext context(canvas); 86 GraphicsContext context(canvas);
87 context.setCertainlyOpaque(false); 87 context.setCertainlyOpaque(false);
88 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), WebCore::BackButt onEndPart); 88 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), blink::BackButton EndPart);
89 } 89 }
90 90
91 void WebScrollbarThemePainter::paintForwardButtonStart(WebCanvas* canvas, const WebRect& rect) 91 void WebScrollbarThemePainter::paintForwardButtonStart(WebCanvas* canvas, const WebRect& rect)
92 { 92 {
93 GraphicsContext context(canvas); 93 GraphicsContext context(canvas);
94 context.setCertainlyOpaque(false); 94 context.setCertainlyOpaque(false);
95 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), WebCore::ForwardB uttonStartPart); 95 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), blink::ForwardBut tonStartPart);
96 } 96 }
97 97
98 void WebScrollbarThemePainter::paintForwardButtonEnd(WebCanvas* canvas, const We bRect& rect) 98 void WebScrollbarThemePainter::paintForwardButtonEnd(WebCanvas* canvas, const We bRect& rect)
99 { 99 {
100 GraphicsContext context(canvas); 100 GraphicsContext context(canvas);
101 context.setCertainlyOpaque(false); 101 context.setCertainlyOpaque(false);
102 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), WebCore::ForwardB uttonEndPart); 102 m_theme->paintButton(&context, m_scrollbar, IntRect(rect), blink::ForwardBut tonEndPart);
103 } 103 }
104 104
105 void WebScrollbarThemePainter::paintTickmarks(WebCanvas* canvas, const WebRect& rect) 105 void WebScrollbarThemePainter::paintTickmarks(WebCanvas* canvas, const WebRect& rect)
106 { 106 {
107 GraphicsContext context(canvas); 107 GraphicsContext context(canvas);
108 context.setCertainlyOpaque(false); 108 context.setCertainlyOpaque(false);
109 m_theme->paintTickmarks(&context, m_scrollbar, IntRect(rect)); 109 m_theme->paintTickmarks(&context, m_scrollbar, IntRect(rect));
110 } 110 }
111 111
112 void WebScrollbarThemePainter::paintThumb(WebCanvas* canvas, const WebRect& rect ) 112 void WebScrollbarThemePainter::paintThumb(WebCanvas* canvas, const WebRect& rect )
113 { 113 {
114 GraphicsContext context(canvas); 114 GraphicsContext context(canvas);
115 context.setCertainlyOpaque(false); 115 context.setCertainlyOpaque(false);
116 m_theme->paintThumb(&context, m_scrollbar, IntRect(rect)); 116 m_theme->paintThumb(&context, m_scrollbar, IntRect(rect));
117 } 117 }
118 118
119 WebScrollbarThemePainter::WebScrollbarThemePainter(WebCore::ScrollbarTheme* them e, WebCore::Scrollbar* scrollbar) 119 WebScrollbarThemePainter::WebScrollbarThemePainter(blink::ScrollbarTheme* theme, blink::Scrollbar* scrollbar)
120 : m_theme(theme) 120 : m_theme(theme)
121 , m_scrollbar(scrollbar) 121 , m_scrollbar(scrollbar)
122 { 122 {
123 } 123 }
124 124
125 } // namespace blink 125 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebScriptController.cpp ('k') | Source/web/WebSearchableFormData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698