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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 2646833002: Add IPC to query capabilities of video input devices. (Closed)
Patch Set: address comment from clamy Created 3 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <functional> 10 #include <functional>
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 int32_t route_id) override; 540 int32_t route_id) override;
541 void ShowCreatedWidget(int process_id, 541 void ShowCreatedWidget(int process_id,
542 int route_id, 542 int route_id,
543 const gfx::Rect& initial_rect) override; 543 const gfx::Rect& initial_rect) override;
544 void ShowCreatedFullscreenWidget(int process_id, int route_id) override; 544 void ShowCreatedFullscreenWidget(int process_id, int route_id) override;
545 void RequestMediaAccessPermission( 545 void RequestMediaAccessPermission(
546 const MediaStreamRequest& request, 546 const MediaStreamRequest& request,
547 const MediaResponseCallback& callback) override; 547 const MediaResponseCallback& callback) override;
548 bool CheckMediaAccessPermission(const GURL& security_origin, 548 bool CheckMediaAccessPermission(const GURL& security_origin,
549 MediaStreamType type) override; 549 MediaStreamType type) override;
550 std::string GetDefaultMediaDeviceID(MediaStreamType type) override;
550 SessionStorageNamespace* GetSessionStorageNamespace( 551 SessionStorageNamespace* GetSessionStorageNamespace(
551 SiteInstance* instance) override; 552 SiteInstance* instance) override;
552 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override; 553 SessionStorageNamespaceMap GetSessionStorageNamespaceMap() override;
553 double GetPendingPageZoomLevel() override; 554 double GetPendingPageZoomLevel() override;
554 FrameTree* GetFrameTree() override; 555 FrameTree* GetFrameTree() override;
555 void SetIsVirtualKeyboardRequested(bool requested) override; 556 void SetIsVirtualKeyboardRequested(bool requested) override;
556 bool IsVirtualKeyboardRequested() override; 557 bool IsVirtualKeyboardRequested() override;
557 bool IsOverridingUserAgent() override; 558 bool IsOverridingUserAgent() override;
558 bool IsJavaScriptDialogShowing() const override; 559 bool IsJavaScriptDialogShowing() const override;
559 bool HideDownloadUI() const override; 560 bool HideDownloadUI() const override;
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
1514 // Adds/removes a callback called on creation of each new WebContents. 1515 // Adds/removes a callback called on creation of each new WebContents.
1515 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1516 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1516 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1517 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1517 1518
1518 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1519 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1519 }; 1520 };
1520 1521
1521 } // namespace content 1522 } // namespace content
1522 1523
1523 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1524 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698