Index: chrome/renderer/chrome_content_renderer_client_browsertest.cc |
diff --git a/chrome/renderer/chrome_content_renderer_client_browsertest.cc b/chrome/renderer/chrome_content_renderer_client_browsertest.cc |
index fbaba812f24072c51fa2a0e7c08af25e13f95b21..14b25267c4d26a149fd2b506a735c784963912ad 100644 |
--- a/chrome/renderer/chrome_content_renderer_client_browsertest.cc |
+++ b/chrome/renderer/chrome_content_renderer_client_browsertest.cc |
@@ -133,7 +133,7 @@ TEST_F(CreatePluginPlaceholderTest, MissingPlugin) { |
params.mimeType = base::ASCIIToUTF16(mime_type); |
ChromeViewHostMsg_GetPluginInfo_Output output; |
- output.status.value = ChromeViewHostMsg_GetPluginInfo_Status::kNotFound; |
+ output.status = ChromeViewHostMsg_GetPluginInfo_Status::kNotFound; |
ScopedMockPluginInfoFilter filter(render_thread_.get()); |
#if defined(ENABLE_PLUGINS) |
@@ -158,7 +158,7 @@ TEST_F(CreatePluginPlaceholderTest, PluginFound) { |
params.mimeType = base::ASCIIToUTF16(mime_type); |
ChromeViewHostMsg_GetPluginInfo_Output output; |
- output.status.value = ChromeViewHostMsg_GetPluginInfo_Status::kAllowed; |
+ output.status = ChromeViewHostMsg_GetPluginInfo_Status::kAllowed; |
ScopedMockPluginInfoFilter filter(render_thread_.get()); |
#if defined(ENABLE_PLUGINS) |