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

Side by Side Diff: content/browser/gamepad/gamepad_platform_data_fetcher.h

Issue 633843002: Replacing the OVERRIDE with override and FINAL with final in content/browser/[dom_storage|gamepad|… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Define the default data fetcher that GamepadProvider will use if none is 5 // Define the default data fetcher that GamepadProvider will use if none is
6 // supplied. (GamepadPlatformDataFetcher). 6 // supplied. (GamepadPlatformDataFetcher).
7 7
8 #ifndef CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_ 8 #ifndef CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_
9 #define CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_ 9 #define CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_
10 10
(...skipping 29 matching lines...) Expand all
40 40
41 typedef GamepadPlatformDataFetcherLinux GamepadPlatformDataFetcher; 41 typedef GamepadPlatformDataFetcherLinux GamepadPlatformDataFetcher;
42 42
43 #else 43 #else
44 44
45 class GamepadDataFetcherEmpty : public GamepadDataFetcher { 45 class GamepadDataFetcherEmpty : public GamepadDataFetcher {
46 public: 46 public:
47 GamepadDataFetcherEmpty(); 47 GamepadDataFetcherEmpty();
48 48
49 virtual void GetGamepadData(blink::WebGamepads* pads, 49 virtual void GetGamepadData(blink::WebGamepads* pads,
50 bool devices_changed_hint) OVERRIDE; 50 bool devices_changed_hint) override;
51 51
52 private: 52 private:
53 DISALLOW_COPY_AND_ASSIGN(GamepadDataFetcherEmpty); 53 DISALLOW_COPY_AND_ASSIGN(GamepadDataFetcherEmpty);
54 }; 54 };
55 typedef GamepadDataFetcherEmpty GamepadPlatformDataFetcher; 55 typedef GamepadDataFetcherEmpty GamepadPlatformDataFetcher;
56 56
57 #endif 57 #endif
58 58
59 } // namespace content 59 } // namespace content
60 60
61 #endif // CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_ 61 #endif // CONTENT_BROWSER_GAMEPAD_GAMEPAD_PLATFORM_DATA_FETCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698