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

Side by Side Diff: components/update_client/component_patcher_unittest.h

Issue 2511973004: components: Cleanup class/struct fwd declarations (Closed)
Patch Set: Rebase on top of current master branch Created 4 years 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
« no previous file with comments | « components/update_client/action_update.h ('k') | components/update_client/test_configurator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef COMPONENTS_UPDATE_CLIENT_COMPONENT_PATCHER_UNITTEST_H_ 5 #ifndef COMPONENTS_UPDATE_CLIENT_COMPONENT_PATCHER_UNITTEST_H_
6 #define COMPONENTS_UPDATE_CLIENT_COMPONENT_PATCHER_UNITTEST_H_ 6 #define COMPONENTS_UPDATE_CLIENT_COMPONENT_PATCHER_UNITTEST_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/files/scoped_temp_dir.h" 11 #include "base/files/scoped_temp_dir.h"
12 #include "base/message_loop/message_loop.h" 12 #include "base/message_loop/message_loop.h"
13 #include "courgette/courgette.h" 13 #include "courgette/courgette.h"
14 #include "courgette/third_party/bsdiff/bsdiff.h" 14 #include "courgette/third_party/bsdiff/bsdiff.h"
15 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
16 16
17 namespace update_client { 17 namespace update_client {
18 18
19 class MockComponentPatcher;
20 class ReadOnlyTestInstaller; 19 class ReadOnlyTestInstaller;
21 20
22 const char binary_output_hash[] = 21 const char binary_output_hash[] =
23 "599aba6d15a7da390621ef1bacb66601ed6aed04dadc1f9b445dcfe31296142a"; 22 "599aba6d15a7da390621ef1bacb66601ed6aed04dadc1f9b445dcfe31296142a";
24 23
25 class ComponentPatcherOperationTest : public testing::Test { 24 class ComponentPatcherOperationTest : public testing::Test {
26 public: 25 public:
27 ComponentPatcherOperationTest(); 26 ComponentPatcherOperationTest();
28 ~ComponentPatcherOperationTest() override; 27 ~ComponentPatcherOperationTest() override;
29 28
30 protected: 29 protected:
31 base::ScopedTempDir input_dir_; 30 base::ScopedTempDir input_dir_;
32 base::ScopedTempDir installed_dir_; 31 base::ScopedTempDir installed_dir_;
33 base::ScopedTempDir unpack_dir_; 32 base::ScopedTempDir unpack_dir_;
34 scoped_refptr<ReadOnlyTestInstaller> installer_; 33 scoped_refptr<ReadOnlyTestInstaller> installer_;
35 scoped_refptr<base::SequencedTaskRunner> task_runner_; 34 scoped_refptr<base::SequencedTaskRunner> task_runner_;
36 35
37 private: 36 private:
38 base::MessageLoopForIO loop_; 37 base::MessageLoopForIO loop_;
39 }; 38 };
40 39
41 } // namespace update_client 40 } // namespace update_client
42 41
43 #endif // COMPONENTS_UPDATE_CLIENT_COMPONENT_PATCHER_UNITTEST_H_ 42 #endif // COMPONENTS_UPDATE_CLIENT_COMPONENT_PATCHER_UNITTEST_H_
OLDNEW
« no previous file with comments | « components/update_client/action_update.h ('k') | components/update_client/test_configurator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698