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

Unified Diff: content/browser/media/media_internals_handler.h

Issue 12153002: Move chrome://media-internals to content. This allows us to hide implementation details from the pu… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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: content/browser/media/media_internals_handler.h
===================================================================
--- content/browser/media/media_internals_handler.h (revision 179909)
+++ content/browser/media/media_internals_handler.h (working copy)
@@ -2,22 +2,23 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_UI_WEBUI_MEDIA_MEDIA_INTERNALS_HANDLER_H_
-#define CHROME_BROWSER_UI_WEBUI_MEDIA_MEDIA_INTERNALS_HANDLER_H_
+#ifndef CONTENT_BROWSER_MEDIA_MEDIA_INTERNALS_HANDLER_H_
+#define CONTENT_BROWSER_MEDIA_MEDIA_INTERNALS_HANDLER_H_
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "content/public/browser/web_ui_message_handler.h"
-class MediaInternalsProxy;
-
namespace base {
class ListValue;
}
+namespace content {
+class MediaInternalsProxy;
+
// This class handles messages to and from MediaInternalsUI.
// It does all its work on the IO thread through the proxy below.
-class MediaInternalsMessageHandler : public content::WebUIMessageHandler {
+class MediaInternalsMessageHandler : public WebUIMessageHandler {
public:
MediaInternalsMessageHandler();
virtual ~MediaInternalsMessageHandler();
@@ -37,4 +38,6 @@
DISALLOW_COPY_AND_ASSIGN(MediaInternalsMessageHandler);
};
-#endif // CHROME_BROWSER_UI_WEBUI_MEDIA_MEDIA_INTERNALS_HANDLER_H_
+} // namespace content
+
+#endif // CONTENT_BROWSER_MEDIA_MEDIA_INTERNALS_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698