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

Unified Diff: Source/modules/mediastream/MediaDeviceInfoCallback.h

Issue 135363004: MediaStream API: Patch #1 of implementing navigator.getMediaDevices (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed year Created 6 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
« no previous file with comments | « Source/modules/mediastream/MediaDeviceInfo.cpp ('k') | Source/modules/mediastream/MediaDevicesRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/MediaDeviceInfoCallback.h
diff --git a/Source/core/html/parser/HTMLParserOptions.h b/Source/modules/mediastream/MediaDeviceInfoCallback.h
similarity index 78%
copy from Source/core/html/parser/HTMLParserOptions.h
copy to Source/modules/mediastream/MediaDeviceInfoCallback.h
index 9a6f8e7de07e09522a4b261128b8f689a021486d..97d9d2175b0235a20cadccdf926513a22d710345 100644
--- a/Source/core/html/parser/HTMLParserOptions.h
+++ b/Source/modules/mediastream/MediaDeviceInfoCallback.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc. All Rights Reserved.
+ * Copyright (C) 2014 Google Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -23,22 +23,19 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef HTMLParserOptions_h
-#define HTMLParserOptions_h
+#ifndef MediaDeviceInfoCallback_h
+#define MediaDeviceInfoCallback_h
-namespace WebCore {
+#include "modules/mediastream/MediaDeviceInfo.h"
-class Document;
+namespace WebCore {
-class HTMLParserOptions {
+class MediaDeviceInfoCallback {
public:
- bool scriptEnabled;
- bool pluginsEnabled;
- bool useThreading;
-
- explicit HTMLParserOptions(Document* = 0);
+ virtual ~MediaDeviceInfoCallback() { }
+ virtual void handleEvent(const MediaDeviceInfoVector&) = 0;
};
-}
+} // namespace WebCore
-#endif
+#endif // MediaDeviceInfoCallback_h
« no previous file with comments | « Source/modules/mediastream/MediaDeviceInfo.cpp ('k') | Source/modules/mediastream/MediaDevicesRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698