Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENSHOT_TESTER_H_ | |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENSHOT_TESTER_H_ | |
| 7 | |
| 8 #include "base/base_export.h" | |
| 9 #include "base/bind_internal.h" | |
| 10 #include "base/files/file_path.h" | |
| 11 #include "base/macros.h" | |
| 12 #include "base/memory/ref_counted_memory.h" | |
| 13 #include "base/memory/weak_ptr.h" | |
| 14 #include "base/run_loop.h" | |
| 15 | |
| 16 namespace chromeos { | |
| 17 | |
| 18 // A class that allows taking, saving and comparing screnshots while | |
| 19 // running tests. | |
| 20 class ScreenshotTester { | |
| 21 public: | |
| 22 ScreenshotTester(); | |
| 23 virtual ~ScreenshotTester(); | |
| 24 | |
| 25 // Returns true if the screenshots should be taken and will be taken, | |
| 26 // false otherwise. Also gets all the information from the command line | |
| 27 // swithes. | |
| 28 bool TryInitialize(); | |
| 29 | |
| 30 // Does all the work that has been stated through switches: | |
| 31 // updates golden screenshot or takes a new screenshot and compares it | |
| 32 // with the golden one (this part is not implemented yet). | |
| 33 void Run(const std::string& file_name); | |
| 34 | |
| 35 private: | |
| 36 typedef scoped_refptr<base::RefCountedBytes> PNGFile; | |
|
ygorshenin1
2014/07/21 16:38:43
nit: add an empty line after type declaration + ad
Lisa Ignatyeva
2014/07/21 16:52:39
Done.
| |
| 37 void TakeScreenshot(); | |
| 38 | |
| 39 // Saves |png_data| as a new golden screenshot for this test. | |
| 40 void UpdateGoldenScreenshot(const std::string& file_name, PNGFile png_data); | |
| 41 | |
| 42 // Saves |png_data| as a current screenshot. | |
| 43 void ReturnScreenshot(PNGFile png_data); | |
| 44 | |
| 45 // Path to the directory for golden screenshots. | |
| 46 base::FilePath screenshot_dest_; | |
| 47 | |
| 48 // |run_loop_| and |run_loop_quitter_| are used to synchronize | |
| 49 // with ui::GrabWindowSnapshotAsync. | |
| 50 base::RunLoop run_loop_; | |
| 51 base::Closure run_loop_quitter_; | |
| 52 | |
| 53 // Current screenshot. | |
| 54 PNGFile screenshot_; | |
| 55 | |
| 56 // Is true when we running updating golden screenshots mode. | |
| 57 bool update_golden_screenshot_; | |
| 58 base::WeakPtrFactory<ScreenshotTester> weak_factory_; | |
| 59 | |
| 60 DISALLOW_COPY_AND_ASSIGN(ScreenshotTester); | |
| 61 }; | |
| 62 | |
| 63 } // namespace chromeos | |
| 64 | |
| 65 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENSHOT_TESTER_H_ | |
| OLD | NEW |