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

Unified Diff: media/base/media_resources.h

Issue 2474803002: [Media Remoting] Add function to create interstitial. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: media/base/media_resources.h
diff --git a/media/base/media_resources.h b/media/base/media_resources.h
index 5acb3090360fbfdcfe56fb66bb676ef044b5de89..58db24ef2c40590590424fa27e358327e0c44132 100644
--- a/media/base/media_resources.h
+++ b/media/base/media_resources.h
@@ -27,6 +27,8 @@ enum MessageId {
BEAMFORMING_ON_DEFAULT_AUDIO_INPUT_DEVICE_NAME,
BEAMFORMING_OFF_DEFAULT_AUDIO_INPUT_DEVICE_NAME,
#endif
+ MEDIA_REMOTING_CAST_ERROR_TEXT,
xjz 2016/11/03 23:53:39 ditto: add build flag here.
apacible 2016/11/04 01:25:38 Done.
+ MEDIA_REMOTING_CASTING_VIDEO_TEXT,
};
// Implementations are expected to convert MessageIds to generated_resources.grd
@@ -44,7 +46,7 @@ MEDIA_EXPORT void SetLocalizedStringProvider(LocalizedStringProvider func);
// Returns a resource string corresponding to |message_id|. See l10n_util.h.
// Returns an empty string if the LocalizedStringProvider has not been
// initialized or if the ID is unrecognized.
-std::string GetLocalizedStringUTF8(MessageId message_id);
+MEDIA_EXPORT std::string GetLocalizedStringUTF8(MessageId message_id);
xjz 2016/11/03 23:53:39 ditto: MEDIA_EXPORT
apacible 2016/11/04 01:25:38 Yes, we need MEDIA_EXPORT to use the function.
xjz 2016/11/04 22:10:23 ditto.
apacible 2016/11/05 01:12:51 Removed MEDIA_EXPORT.
base::string16 GetLocalizedStringUTF16(MessageId message_id);
#endif

Powered by Google App Engine
This is Rietveld 408576698