| OLD | NEW | 
|   1 // Copyright 2015 The Chromium Authors. All rights reserved. |   1 // Copyright 2015 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 CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SOURCE_HELPER_H_ |   5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SOURCE_HELPER_H_ | 
|   6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SOURCE_HELPER_H_ |   6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SOURCE_HELPER_H_ | 
|   7  |   7  | 
|   8 #include <string> |   8 #include <string> | 
|   9  |   9  | 
|  10 #include "chrome/browser/media/router/media_source.h" |  10 #include "chrome/browser/media/router/media_source.h" | 
| (...skipping 11 matching lines...) Expand all  Loading... | 
|  22 MediaSource MediaSourceForTab(int tab_id); |  22 MediaSource MediaSourceForTab(int tab_id); | 
|  23 MediaSource MediaSourceForTabContentRemoting(content::WebContents* contents); |  23 MediaSource MediaSourceForTabContentRemoting(content::WebContents* contents); | 
|  24 MediaSource MediaSourceForDesktop(); |  24 MediaSource MediaSourceForDesktop(); | 
|  25 MediaSource MediaSourceForPresentationUrl(const GURL& presentation_url); |  25 MediaSource MediaSourceForPresentationUrl(const GURL& presentation_url); | 
|  26  |  26  | 
|  27 // Returns true if |source| outputs its content via mirroring. |  27 // Returns true if |source| outputs its content via mirroring. | 
|  28 bool IsDesktopMirroringMediaSource(const MediaSource& source); |  28 bool IsDesktopMirroringMediaSource(const MediaSource& source); | 
|  29 bool IsTabMirroringMediaSource(const MediaSource& source); |  29 bool IsTabMirroringMediaSource(const MediaSource& source); | 
|  30 bool IsMirroringMediaSource(const MediaSource& source); |  30 bool IsMirroringMediaSource(const MediaSource& source); | 
|  31  |  31  | 
 |  32 // Returns true if |source| is a media route type that can be connected to the | 
 |  33 // Presentation API by from a request initiated by the browser. | 
 |  34 bool CanConnectToMediaSource(const MediaSource& source); | 
 |  35  | 
|  32 // Parses the |source| and returns the SessionTabHelper tab ID referencing a |  36 // Parses the |source| and returns the SessionTabHelper tab ID referencing a | 
|  33 // source tab. Returns a non-positive value on error. |  37 // source tab. Returns a non-positive value on error. | 
|  34 int TabIdFromMediaSource(const MediaSource& source); |  38 int TabIdFromMediaSource(const MediaSource& source); | 
|  35  |  39  | 
|  36 // Checks that |source| is a parseable URN and is of a known type. |  40 // Checks that |source| is a parseable URN and is of a known type. | 
|  37 // Does not deeper protocol-level syntax checks. |  41 // Does not deeper protocol-level syntax checks. | 
|  38 bool IsValidMediaSource(const MediaSource& source); |  42 bool IsValidMediaSource(const MediaSource& source); | 
|  39  |  43  | 
|  40 // Returns true if |url| is a valid presentation URL. |  44 // Returns true if |url| is a valid presentation URL. | 
|  41 bool IsValidPresentationUrl(const GURL& url); |  45 bool IsValidPresentationUrl(const GURL& url); | 
|  42  |  46  | 
|  43 }  // namespace media_router |  47 }  // namespace media_router | 
|  44  |  48  | 
|  45 #endif  // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SOURCE_HELPER_H_ |  49 #endif  // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_SOURCE_HELPER_H_ | 
| OLD | NEW |