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

Unified Diff: content/browser/tracing/file_tracing_provider_impl.h

Issue 2163063002: Make File::Duplicate() const (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert unneeded 'private:' label Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/files/file_win.cc ('k') | content/browser/tracing/file_tracing_provider_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/tracing/file_tracing_provider_impl.h
diff --git a/content/browser/tracing/file_tracing_provider_impl.h b/content/browser/tracing/file_tracing_provider_impl.h
index 8926635adaedb71443b69fe02f6f24bb912fbc12..398ec544f03d78ac2b4b4a5104c8d71d8b9f3ae5 100644
--- a/content/browser/tracing/file_tracing_provider_impl.h
+++ b/content/browser/tracing/file_tracing_provider_impl.h
@@ -21,11 +21,13 @@ class FileTracingProviderImpl : public base::FileTracing::Provider {
// base::FileTracing::Provider:
bool FileTracingCategoryIsEnabled() const override;
- void FileTracingEnable(void* id) override;
- void FileTracingDisable(void* id) override;
- void FileTracingEventBegin(const char* name, void* id,
- const base::FilePath& path, int64_t size) override;
- void FileTracingEventEnd(const char* name, void* id) override;
+ void FileTracingEnable(const void* id) override;
+ void FileTracingDisable(const void* id) override;
+ void FileTracingEventBegin(const char* name,
+ const void* id,
+ const base::FilePath& path,
+ int64_t size) override;
+ void FileTracingEventEnd(const char* name, const void* id) override;
private:
DISALLOW_COPY_AND_ASSIGN(FileTracingProviderImpl);
« no previous file with comments | « base/files/file_win.cc ('k') | content/browser/tracing/file_tracing_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698