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

Unified Diff: chrome/browser/media/webrtc_logging_handler_host.h

Issue 15741003: Moving WebRTC logging related files from content to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed some errors. Created 7 years, 7 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
Index: chrome/browser/media/webrtc_logging_handler_host.h
diff --git a/content/browser/renderer_host/media/webrtc_logging_handler_host.h b/chrome/browser/media/webrtc_logging_handler_host.h
similarity index 74%
rename from content/browser/renderer_host/media/webrtc_logging_handler_host.h
rename to chrome/browser/media/webrtc_logging_handler_host.h
index 2e5e33b7a23e53a17f319c574fab21ff42515154..4ecde3696301d8151de553379f781c88be63cd87 100644
--- a/content/browser/renderer_host/media/webrtc_logging_handler_host.h
+++ b/chrome/browser/media/webrtc_logging_handler_host.h
@@ -2,19 +2,19 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_
-#define CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_
+#ifndef CHROME_BROWSER_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_
+#define CHROME_BROWSER_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_
#include "base/basictypes.h"
#include "base/shared_memory.h"
#include "content/public/browser/browser_message_filter.h"
-namespace content {
+namespace chrome {
// WebRtcLoggingHandlerHost handles operations regarding the WebRTC logging:
// opening and closing shared memory buffer that the handler in the renderer
// process writes to.
-class WebRtcLoggingHandlerHost : public BrowserMessageFilter {
+class WebRtcLoggingHandlerHost : public content::BrowserMessageFilter {
public:
WebRtcLoggingHandlerHost();
@@ -25,7 +25,7 @@ class WebRtcLoggingHandlerHost : public BrowserMessageFilter {
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE;
- friend class BrowserThread;
+ friend class content::BrowserThread;
friend class base::DeleteHelper<WebRtcLoggingHandlerHost>;
virtual ~WebRtcLoggingHandlerHost();
@@ -38,6 +38,6 @@ class WebRtcLoggingHandlerHost : public BrowserMessageFilter {
DISALLOW_COPY_AND_ASSIGN(WebRtcLoggingHandlerHost);
};
-} // namespace content
+} // namespace chrome
-#endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_
+#endif // CHROME_BROWSER_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_

Powered by Google App Engine
This is Rietveld 408576698