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

Unified Diff: webkit/glue/webthemeengine_impl_win.h

Issue 8961013: Clean up the Linux WebThemeEngine impl according to the coding style rules (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch for landing Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/webthemeengine_impl_mac.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webthemeengine_impl_win.h
diff --git a/webkit/glue/webthemeengine_impl_win.h b/webkit/glue/webthemeengine_impl_win.h
index deb0ded7c6b7d19895f68c541433ed78a029fca5..49a05cf0dc9015c855fe5c829826cd3e7ee8384f 100644
--- a/webkit/glue/webthemeengine_impl_win.h
+++ b/webkit/glue/webthemeengine_impl_win.h
@@ -1,9 +1,9 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WEBTHEMEENGINE_IMPL_WIN_H_
-#define WEBTHEMEENGINE_IMPL_WIN_H_
+#ifndef WEBKIT_GLUE_WEBTHEMEENGINE_IMPL_WIN_H_
+#define WEBKIT_GLUE_WEBTHEMEENGINE_IMPL_WIN_H_
#include "third_party/WebKit/Source/WebKit/chromium/public/platform/win/WebThemeEngine.h"
@@ -13,36 +13,36 @@ class WebThemeEngineImpl : public WebKit::WebThemeEngine {
public:
// WebThemeEngine methods:
virtual void paintButton(
- WebKit::WebCanvas*, int part, int state, int classic_state,
- const WebKit::WebRect&);
+ WebKit::WebCanvas* canvas, int part, int state, int classic_state,
+ const WebKit::WebRect& rect);
virtual void paintMenuList(
- WebKit::WebCanvas*, int part, int state, int classic_state,
- const WebKit::WebRect&);
+ WebKit::WebCanvas* canvas, int part, int state, int classic_state,
+ const WebKit::WebRect& rect);
virtual void paintScrollbarArrow(
- WebKit::WebCanvas*, int state, int classic_state,
- const WebKit::WebRect&);
+ WebKit::WebCanvas* canvas, int state, int classic_state,
+ const WebKit::WebRect& rect);
virtual void paintScrollbarThumb(
- WebKit::WebCanvas*, int part, int state, int classic_state,
- const WebKit::WebRect&);
+ WebKit::WebCanvas* canvas, int part, int state, int classic_state,
+ const WebKit::WebRect& rect);
virtual void paintScrollbarTrack(
- WebKit::WebCanvas*, int part, int state, int classic_state,
- const WebKit::WebRect&, const WebKit::WebRect& align_rect);
+ WebKit::WebCanvas* canvas, int part, int state, int classic_state,
+ const WebKit::WebRect& rect, const WebKit::WebRect& align_rect);
virtual void paintSpinButton(
- WebKit::WebCanvas*, int part, int state, int classic_state,
- const WebKit::WebRect&);
+ WebKit::WebCanvas* canvas, int part, int state, int classic_state,
+ const WebKit::WebRect& rect);
virtual void paintTextField(
- WebKit::WebCanvas*, int part, int state, int classic_state,
- const WebKit::WebRect&, WebKit::WebColor, bool fill_content_area,
- bool draw_edges);
+ WebKit::WebCanvas* canvas, int part, int state, int classic_state,
+ const WebKit::WebRect& rect, WebKit::WebColor color,
+ bool fill_content_area, bool draw_edges);
virtual void paintTrackbar(
- WebKit::WebCanvas*, int part, int state, int classic_state,
- const WebKit::WebRect&);
+ WebKit::WebCanvas* canvas, int part, int state, int classic_state,
+ const WebKit::WebRect& rect);
virtual void paintProgressBar(
- WebKit::WebCanvas*, const WebKit::WebRect& barRect,
+ WebKit::WebCanvas* canvas, const WebKit::WebRect& barRect,
const WebKit::WebRect& valueRect, bool determinate,
double animatedSeconds);
};
} // namespace webkit_glue
-#endif // WEBTHEMEENGINE_IMPL_WIN_H_
+#endif // WEBKIT_GLUE_WEBTHEMEENGINE_IMPL_WIN_H_
« no previous file with comments | « webkit/glue/webthemeengine_impl_mac.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698