| OLD | NEW |
| 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 CHROME_BROWSER_EXTENSIONS_API_FEEDBACK_PRIVATE_FEEDBACK_PRIVATE_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_FEEDBACK_PRIVATE_FEEDBACK_PRIVATE_API_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_FEEDBACK_PRIVATE_FEEDBACK_PRIVATE_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_FEEDBACK_PRIVATE_FEEDBACK_PRIVATE_API_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "chrome/browser/extensions/chrome_extension_function.h" | 10 #include "chrome/browser/extensions/chrome_extension_function.h" |
| 11 #include "chrome/browser/feedback/system_logs/system_logs_source.h" | |
| 12 #include "chrome/common/extensions/api/feedback_private.h" | 11 #include "chrome/common/extensions/api/feedback_private.h" |
| 12 #include "components/feedback/system_logs/system_logs_source.h" |
| 13 #include "extensions/browser/browser_context_keyed_api_factory.h" | 13 #include "extensions/browser/browser_context_keyed_api_factory.h" |
| 14 #include "extensions/browser/extension_function.h" | 14 #include "extensions/browser/extension_function.h" |
| 15 #include "ui/gfx/geometry/rect.h" | 15 #include "ui/gfx/geometry/rect.h" |
| 16 | 16 |
| 17 namespace extensions { | 17 namespace extensions { |
| 18 | 18 |
| 19 class FeedbackService; | 19 class FeedbackService; |
| 20 #if defined(OS_CHROMEOS) | 20 #if defined(OS_CHROMEOS) |
| 21 class LogSourceAccessManager; | 21 class LogSourceAccessManager; |
| 22 #endif // defined(OS_CHROMEOS) | 22 #endif // defined(OS_CHROMEOS) |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 FEEDBACKPRIVATE_LOGSRTPROMPTRESULT); | 150 FEEDBACKPRIVATE_LOGSRTPROMPTRESULT); |
| 151 | 151 |
| 152 protected: | 152 protected: |
| 153 ~FeedbackPrivateLogSrtPromptResultFunction() override {} | 153 ~FeedbackPrivateLogSrtPromptResultFunction() override {} |
| 154 AsyncExtensionFunction::ResponseAction Run() override; | 154 AsyncExtensionFunction::ResponseAction Run() override; |
| 155 }; | 155 }; |
| 156 | 156 |
| 157 } // namespace extensions | 157 } // namespace extensions |
| 158 | 158 |
| 159 #endif // CHROME_BROWSER_EXTENSIONS_API_FEEDBACK_PRIVATE_FEEDBACK_PRIVATE_API_H
_ | 159 #endif // CHROME_BROWSER_EXTENSIONS_API_FEEDBACK_PRIVATE_FEEDBACK_PRIVATE_API_H
_ |
| OLD | NEW |