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

Unified Diff: chrome/browser/chromeos/camera_presence_notifier.cc

Issue 566863003: Declaring the weak_ptr_factory in proper order. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: chrome/browser/chromeos/camera_presence_notifier.cc
diff --git a/chrome/browser/chromeos/camera_presence_notifier.cc b/chrome/browser/chromeos/camera_presence_notifier.cc
index 57d3b2459934871a4c84e5ff4497dc28bc9fb7aa..4836364c780034739227a063f08655ce51c5cf1d 100644
--- a/chrome/browser/chromeos/camera_presence_notifier.cc
+++ b/chrome/browser/chromeos/camera_presence_notifier.cc
@@ -19,8 +19,8 @@ const int kCameraCheckIntervalSeconds = 3;
} // namespace
CameraPresenceNotifier::CameraPresenceNotifier() :
- weak_factory_(this),
- camera_present_on_last_check_(false) {}
+ camera_present_on_last_check_(false),
+ weak_factory_(this) {}
CameraPresenceNotifier::~CameraPresenceNotifier() {}
« no previous file with comments | « chrome/browser/chromeos/camera_presence_notifier.h ('k') | chrome/browser/chromeos/file_system_provider/request_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698