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

Unified Diff: ui/base/cursor/cursor_loader_ozone.h

Issue 808333004: virtual/override specifier cleanup in ui/ (mostly Ozone code). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/aura/window_tree_host_ozone.h ('k') | ui/base/cursor/ozone/bitmap_cursor_factory_ozone.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/cursor/cursor_loader_ozone.h
diff --git a/ui/base/cursor/cursor_loader_ozone.h b/ui/base/cursor/cursor_loader_ozone.h
index 7aef4311380e152a265b2a099b009d4a6a6fb020..26f8bac7c2c5644f93e2d81768322baa2f42c22a 100644
--- a/ui/base/cursor/cursor_loader_ozone.h
+++ b/ui/base/cursor/cursor_loader_ozone.h
@@ -15,18 +15,18 @@ namespace ui {
class UI_BASE_EXPORT CursorLoaderOzone : public CursorLoader {
public:
CursorLoaderOzone();
- virtual ~CursorLoaderOzone();
+ ~CursorLoaderOzone() override;
// CursorLoader overrides:
- virtual void LoadImageCursor(int id,
- int resource_id,
- const gfx::Point& hot) override;
- virtual void LoadAnimatedCursor(int id,
- int resource_id,
- const gfx::Point& hot,
- int frame_delay_ms) override;
- virtual void UnloadAll() override;
- virtual void SetPlatformCursor(gfx::NativeCursor* cursor) override;
+ void LoadImageCursor(int id,
+ int resource_id,
+ const gfx::Point& hot) override;
+ void LoadAnimatedCursor(int id,
+ int resource_id,
+ const gfx::Point& hot,
+ int frame_delay_ms) override;
+ void UnloadAll() override;
+ void SetPlatformCursor(gfx::NativeCursor* cursor) override;
private:
// Pointers are owned by ResourceBundle and must not be freed here.
« no previous file with comments | « ui/aura/window_tree_host_ozone.h ('k') | ui/base/cursor/ozone/bitmap_cursor_factory_ozone.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698