OLD | NEW |
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 #ifndef CONTENT_PUBLIC_TEST_MOCK_DOWNLOAD_ITEM_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_MOCK_DOWNLOAD_ITEM_H_ |
6 #define CONTENT_PUBLIC_TEST_MOCK_DOWNLOAD_ITEM_H_ | 6 #define CONTENT_PUBLIC_TEST_MOCK_DOWNLOAD_ITEM_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
| 10 #include <string> |
| 11 #include <vector> |
| 12 |
10 #include "base/callback.h" | 13 #include "base/callback.h" |
11 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
12 #include "base/time/time.h" | 15 #include "base/time/time.h" |
13 #include "content/public/browser/download_interrupt_reasons.h" | 16 #include "content/public/browser/download_interrupt_reasons.h" |
14 #include "content/public/browser/download_item.h" | 17 #include "content/public/browser/download_item.h" |
15 #include "testing/gmock/include/gmock/gmock.h" | 18 #include "testing/gmock/include/gmock/gmock.h" |
16 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
17 #include "url/gurl.h" | 20 #include "url/gurl.h" |
18 | 21 |
19 namespace content { | 22 namespace content { |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 MOCK_CONST_METHOD0(GetStartTime, base::Time()); | 94 MOCK_CONST_METHOD0(GetStartTime, base::Time()); |
92 MOCK_CONST_METHOD0(GetEndTime, base::Time()); | 95 MOCK_CONST_METHOD0(GetEndTime, base::Time()); |
93 MOCK_METHOD0(CanShowInFolder, bool()); | 96 MOCK_METHOD0(CanShowInFolder, bool()); |
94 MOCK_METHOD0(CanOpenDownload, bool()); | 97 MOCK_METHOD0(CanOpenDownload, bool()); |
95 MOCK_METHOD0(ShouldOpenFileBasedOnExtension, bool()); | 98 MOCK_METHOD0(ShouldOpenFileBasedOnExtension, bool()); |
96 MOCK_CONST_METHOD0(GetOpenWhenComplete, bool()); | 99 MOCK_CONST_METHOD0(GetOpenWhenComplete, bool()); |
97 MOCK_METHOD0(GetAutoOpened, bool()); | 100 MOCK_METHOD0(GetAutoOpened, bool()); |
98 MOCK_CONST_METHOD0(GetOpened, bool()); | 101 MOCK_CONST_METHOD0(GetOpened, bool()); |
99 MOCK_CONST_METHOD0(GetBrowserContext, BrowserContext*()); | 102 MOCK_CONST_METHOD0(GetBrowserContext, BrowserContext*()); |
100 MOCK_CONST_METHOD0(GetWebContents, WebContents*()); | 103 MOCK_CONST_METHOD0(GetWebContents, WebContents*()); |
101 MOCK_METHOD1(OnContentCheckCompleted, void(DownloadDangerType)); | 104 MOCK_METHOD2(OnContentCheckCompleted, void(DownloadDangerType, bool)); |
102 MOCK_METHOD1(SetOpenWhenComplete, void(bool)); | 105 MOCK_METHOD1(SetOpenWhenComplete, void(bool)); |
103 MOCK_METHOD1(SetOpened, void(bool)); | 106 MOCK_METHOD1(SetOpened, void(bool)); |
104 MOCK_METHOD1(SetDisplayName, void(const base::FilePath&)); | 107 MOCK_METHOD1(SetDisplayName, void(const base::FilePath&)); |
105 MOCK_CONST_METHOD1(DebugString, std::string(bool)); | 108 MOCK_CONST_METHOD1(DebugString, std::string(bool)); |
106 | 109 |
107 private: | 110 private: |
108 base::ObserverList<Observer> observers_; | 111 base::ObserverList<Observer> observers_; |
109 }; | 112 }; |
110 | 113 |
111 } // namespace content | 114 } // namespace content |
112 | 115 |
113 #endif // CONTENT_PUBLIC_TEST_MOCK_DOWNLOAD_ITEM_H_ | 116 #endif // CONTENT_PUBLIC_TEST_MOCK_DOWNLOAD_ITEM_H_ |
OLD | NEW |