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

Side by Side Diff: chrome/browser/extensions/api/experience_sampling_private/experience_sampling.h

Issue 1869503004: Convert //tools to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, change iwyu fixes for converted directories to include <memory> Created 4 years, 8 months 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
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698