| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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_FEEDBACK_FEEDBACK_DATA_H_ | 5 #ifndef COMPONENTS_FEEDBACK_FEEDBACK_DATA_H_ |
| 6 #define COMPONENTS_FEEDBACK_FEEDBACK_DATA_H_ | 6 #define COMPONENTS_FEEDBACK_FEEDBACK_DATA_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "components/feedback/feedback_common.h" | 13 #include "components/feedback/feedback_common.h" |
| 14 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class FilePath; | |
| 18 class RefCountedString; | 17 class RefCountedString; |
| 19 } | 18 } |
| 20 namespace content { | 19 namespace content { |
| 21 class BrowserContext; | 20 class BrowserContext; |
| 22 } | 21 } |
| 23 | 22 |
| 24 namespace feedback { | 23 namespace feedback { |
| 25 | 24 |
| 26 class FeedbackData : public FeedbackCommon { | 25 class FeedbackData : public FeedbackCommon { |
| 27 public: | 26 public: |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 | 92 |
| 94 int pending_op_count_; | 93 int pending_op_count_; |
| 95 bool report_sent_; | 94 bool report_sent_; |
| 96 | 95 |
| 97 DISALLOW_COPY_AND_ASSIGN(FeedbackData); | 96 DISALLOW_COPY_AND_ASSIGN(FeedbackData); |
| 98 }; | 97 }; |
| 99 | 98 |
| 100 } // namespace feedback | 99 } // namespace feedback |
| 101 | 100 |
| 102 #endif // COMPONENTS_FEEDBACK_FEEDBACK_DATA_H_ | 101 #endif // COMPONENTS_FEEDBACK_FEEDBACK_DATA_H_ |
| OLD | NEW |