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

Unified Diff: chrome_frame/test/chrome_frame_automation_mock.h

Issue 5707009: Fix ChromeFrame test failures caused by the change to support about:plugins i... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/test/chrome_frame_automation_mock.h
===================================================================
--- chrome_frame/test/chrome_frame_automation_mock.h (revision 69077)
+++ chrome_frame/test/chrome_frame_automation_mock.h (working copy)
@@ -11,6 +11,7 @@
#include "base/utf_string_conversions.h"
#include "chrome_frame/chrome_frame_automation.h"
#include "chrome_frame/chrome_frame_plugin.h"
+#include "chrome_frame/navigation_constraints.h"
#include "chrome_frame/test/http_server.h"
#include "chrome_frame/test/chrome_frame_test_utils.h"
#include "chrome_frame/test/test_with_web_server.h"
@@ -58,10 +59,10 @@
// Navigate external tab to the specified url through automation
bool Navigate(const std::string& url) {
+ NavigationConstraintsImpl navigation_constraints;
url_ = GURL(url);
- bool result = automation_client_->InitiateNavigation(url,
- std::string(),
- false);
+ bool result = automation_client_->InitiateNavigation(
+ url, std::string(), &navigation_constraints);
if (!result)
OnLoadFailed(0, url);
return result;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698