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

Side by Side Diff: content/public/browser/web_contents_observer.h

Issue 1554233004: Plumb audio muting state to guest web-contents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Switch to WebContentsObserver design. Created 4 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 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_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_
6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ 6 #define CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 // finished, web_contents() returns nullptr. 390 // finished, web_contents() returns nullptr.
391 virtual void WebContentsDestroyed() {} 391 virtual void WebContentsDestroyed() {}
392 392
393 // Called when the user agent override for a WebContents has been changed. 393 // Called when the user agent override for a WebContents has been changed.
394 virtual void UserAgentOverrideSet(const std::string& user_agent) {} 394 virtual void UserAgentOverrideSet(const std::string& user_agent) {}
395 395
396 // Invoked when new FaviconURL candidates are received from the renderer 396 // Invoked when new FaviconURL candidates are received from the renderer
397 // process. 397 // process.
398 virtual void DidUpdateFaviconURL(const std::vector<FaviconURL>& candidates) {} 398 virtual void DidUpdateFaviconURL(const std::vector<FaviconURL>& candidates) {}
399 399
400 virtual void DidUpdateAudioMutingState(bool muted) {}
401
400 // Invoked when a pepper plugin creates and shows or destroys a fullscreen 402 // Invoked when a pepper plugin creates and shows or destroys a fullscreen
401 // RenderWidget. 403 // RenderWidget.
402 virtual void DidShowFullscreenWidget(int routing_id) {} 404 virtual void DidShowFullscreenWidget(int routing_id) {}
403 virtual void DidDestroyFullscreenWidget(int routing_id) {} 405 virtual void DidDestroyFullscreenWidget(int routing_id) {}
404 406
405 // Invoked when the renderer process has toggled the tab into/out of 407 // Invoked when the renderer process has toggled the tab into/out of
406 // fullscreen mode. 408 // fullscreen mode.
407 virtual void DidToggleFullscreenModeForTab(bool entered_fullscreen) {} 409 virtual void DidToggleFullscreenModeForTab(bool entered_fullscreen) {}
408 410
409 // Invoked when an interstitial page is attached or detached. 411 // Invoked when an interstitial page is attached or detached.
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 void ResetWebContents(); 482 void ResetWebContents();
481 483
482 WebContentsImpl* web_contents_; 484 WebContentsImpl* web_contents_;
483 485
484 DISALLOW_COPY_AND_ASSIGN(WebContentsObserver); 486 DISALLOW_COPY_AND_ASSIGN(WebContentsObserver);
485 }; 487 };
486 488
487 } // namespace content 489 } // namespace content
488 490
489 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_ 491 #endif // CONTENT_PUBLIC_BROWSER_WEB_CONTENTS_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698