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

Unified Diff: chrome/browser/ui/views/status_icons/status_tray_win_unittest.cc

Issue 1210013007: clang/win: Fix warnings to prepare for building without -Wno-reorder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-unsequenced
Patch Set: Created 5 years, 6 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 | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/chrome_watcher/chrome_watcher_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/status_icons/status_tray_win_unittest.cc
diff --git a/chrome/browser/ui/views/status_icons/status_tray_win_unittest.cc b/chrome/browser/ui/views/status_icons/status_tray_win_unittest.cc
index babdfca065cae81f1b91d062c5b5b48f6cce2166..443fb404761474f87d234c6eac9525510cb2794f 100644
--- a/chrome/browser/ui/views/status_icons/status_tray_win_unittest.cc
+++ b/chrome/browser/ui/views/status_icons/status_tray_win_unittest.cc
@@ -42,8 +42,7 @@ class FakeStatusTrayStateChangerProxy : public StatusTrayStateChangerProxy {
class FakeStatusIconObserver : public StatusIconObserver {
public:
FakeStatusIconObserver()
- : balloon_clicked_(false),
- status_icon_click_count_(0) {}
+ : status_icon_click_count_(0), balloon_clicked_(false) {}
void OnStatusIconClicked() override { ++status_icon_click_count_; }
void OnBalloonClicked() override { balloon_clicked_ = true; }
bool balloon_clicked() const { return balloon_clicked_; }
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/chrome_watcher/chrome_watcher_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698