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

Side by Side Diff: content/public/browser/tracing_delegate.h

Issue 942963003: Cleanup: Fix content header include guards. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: REBASE Created 5 years, 9 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 CONTENT_BROWSER_TRACING_TRACING_DELEGATE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_
6 #define CONTENT_BROWSER_TRACING_TRACING_DELEGATE_H_ 6 #define CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 9
10 namespace net { 10 namespace net {
11 class URLRequestContextGetter; 11 class URLRequestContextGetter;
12 } 12 }
13 13
14 namespace content { 14 namespace content {
15 class TraceUploader; 15 class TraceUploader;
16 16
17 // This can be implemented by the embedder to provide functionality for the 17 // This can be implemented by the embedder to provide functionality for the
18 // about://tracing WebUI. 18 // about://tracing WebUI.
19 class TracingDelegate { 19 class TracingDelegate {
20 public: 20 public:
21 virtual ~TracingDelegate() {} 21 virtual ~TracingDelegate() {}
22 22
23 // Provide trace uploading functionality; see trace_uploader.h. 23 // Provide trace uploading functionality; see trace_uploader.h.
24 virtual scoped_ptr<TraceUploader> GetTraceUploader( 24 virtual scoped_ptr<TraceUploader> GetTraceUploader(
25 net::URLRequestContextGetter* request_context) = 0; 25 net::URLRequestContextGetter* request_context) = 0;
26 }; 26 };
27 27
28 } // namespace content 28 } // namespace content
29 29
30 #endif // CONTENT_BROWSER_TRACING_TRACING_DELEGATE_H_ 30 #endif // CONTENT_PUBLIC_BROWSER_TRACING_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/public/browser/screen_orientation_provider.h ('k') | content/public/browser/worker_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698