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

Unified Diff: content/renderer/media/midi_dispatcher.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « content/renderer/media/media_stream_track_extra_data.h ('k') | content/renderer/media/midi_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/midi_dispatcher.h
diff --git a/content/renderer/media/midi_dispatcher.h b/content/renderer/media/midi_dispatcher.h
index 143d706987e7a356441680f9326cc043fdec592b..70f8125bdd236ac227d94cdb377fbd3c61e17872 100644
--- a/content/renderer/media/midi_dispatcher.h
+++ b/content/renderer/media/midi_dispatcher.h
@@ -9,7 +9,7 @@
#include "content/public/renderer/render_view_observer.h"
#include "third_party/WebKit/public/web/WebMIDIClient.h"
-namespace WebKit {
+namespace blink {
class WebMIDIPermissionRequest;
}
@@ -23,7 +23,7 @@ class RenderViewImpl;
// MIDIDispatcherHost owned by RenderViewHost since permissions are managed in
// the browser process.
class MIDIDispatcher : public RenderViewObserver,
- public WebKit::WebMIDIClient {
+ public blink::WebMIDIClient {
public:
explicit MIDIDispatcher(RenderViewImpl* render_view);
virtual ~MIDIDispatcher();
@@ -32,11 +32,11 @@ class MIDIDispatcher : public RenderViewObserver,
// RenderView::Observer implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
- // WebKit::WebMIDIClient implementation.
+ // blink::WebMIDIClient implementation.
virtual void requestSysExPermission(
- const WebKit::WebMIDIPermissionRequest& request) OVERRIDE;
+ const blink::WebMIDIPermissionRequest& request) OVERRIDE;
virtual void cancelSysExPermissionRequest(
- const WebKit::WebMIDIPermissionRequest& request) OVERRIDE;
+ const blink::WebMIDIPermissionRequest& request) OVERRIDE;
// Permission for using system exclusive messages has been set.
void OnSysExPermissionApproved(int client_id, bool is_allowed);
@@ -44,7 +44,7 @@ class MIDIDispatcher : public RenderViewObserver,
// Each WebMIDIPermissionRequest object is valid until
// cancelSysExPermissionRequest() is called with the object, or used to call
// WebMIDIPermissionRequest::setIsAllowed().
- IDMap<WebKit::WebMIDIPermissionRequest> requests_;
+ IDMap<blink::WebMIDIPermissionRequest> requests_;
DISALLOW_COPY_AND_ASSIGN(MIDIDispatcher);
};
« no previous file with comments | « content/renderer/media/media_stream_track_extra_data.h ('k') | content/renderer/media/midi_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698