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

Unified Diff: content/renderer/browser_plugin/browser_plugin_browsertest.cc

Issue 10982068: Browser Plugin: Remove unnecessary references to frame_id (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/browser_plugin/browser_plugin_browsertest.cc
diff --git a/content/renderer/browser_plugin/browser_plugin_browsertest.cc b/content/renderer/browser_plugin/browser_plugin_browsertest.cc
index 66a24c96142deb1a10758fd26e048f3f3c5ff280..b658fc66091201b46494ed8d2079224d446b0481 100644
--- a/content/renderer/browser_plugin/browser_plugin_browsertest.cc
+++ b/content/renderer/browser_plugin/browser_plugin_browsertest.cc
@@ -139,13 +139,11 @@ TEST_F(BrowserPluginTest, SrcAttribute) {
ASSERT_TRUE(msg);
int instance_id;
- long long frame_id;
std::string src;
gfx::Size size;
BrowserPluginHostMsg_NavigateGuest::Read(
msg,
&instance_id,
- &frame_id,
&src,
&size);
EXPECT_EQ("foo", src);
@@ -163,13 +161,11 @@ TEST_F(BrowserPluginTest, SrcAttribute) {
ASSERT_TRUE(msg);
int instance_id;
- long long frame_id;
std::string src;
gfx::Size size;
BrowserPluginHostMsg_NavigateGuest::Read(
msg,
&instance_id,
- &frame_id,
&src,
&size);
EXPECT_EQ("bar", src);
@@ -436,13 +432,11 @@ TEST_F(BrowserPluginTest, ImmutableAttributesAfterNavigation) {
ASSERT_TRUE(msg);
int instance_id;
- long long frame_id;
std::string src;
gfx::Size size;
BrowserPluginHostMsg_NavigateGuest::Read(
msg,
&instance_id,
- &frame_id,
&src,
&size);
EXPECT_STREQ("bar", src.c_str());
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698