| 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 CHROME_BROWSER_EXTENSIONS_API_EXPERIENCE_SAMPLING_PRIVATE_EXPERIENCE_SAM
PLING_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_EXPERIENCE_SAMPLING_PRIVATE_EXPERIENCE_SAM
PLING_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_EXPERIENCE_SAMPLING_PRIVATE_EXPERIENCE_SAM
PLING_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_EXPERIENCE_SAMPLING_PRIVATE_EXPERIENCE_SAM
PLING_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "chrome/common/extensions/api/experience_sampling_private.h" | 11 #include "chrome/common/extensions/api/experience_sampling_private.h" |
| 10 | 12 |
| 11 namespace content { | 13 namespace content { |
| 12 class BrowserContext; | 14 class BrowserContext; |
| 13 } | 15 } |
| 14 | 16 |
| 15 class GURL; | 17 class GURL; |
| 16 | 18 |
| 17 namespace extensions { | 19 namespace extensions { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 bool has_viewed_learn_more_; | 70 bool has_viewed_learn_more_; |
| 69 content::BrowserContext* browser_context_; | 71 content::BrowserContext* browser_context_; |
| 70 UIElement ui_element_; | 72 UIElement ui_element_; |
| 71 | 73 |
| 72 DISALLOW_COPY_AND_ASSIGN(ExperienceSamplingEvent); | 74 DISALLOW_COPY_AND_ASSIGN(ExperienceSamplingEvent); |
| 73 }; | 75 }; |
| 74 | 76 |
| 75 } // namespace extensions | 77 } // namespace extensions |
| 76 | 78 |
| 77 #endif // CHROME_BROWSER_EXTENSIONS_API_EXPERIENCE_SAMPLING_PRIVATE_EXPERIENCE_
SAMPLING_H_ | 79 #endif // CHROME_BROWSER_EXTENSIONS_API_EXPERIENCE_SAMPLING_PRIVATE_EXPERIENCE_
SAMPLING_H_ |
| OLD | NEW |