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

Unified Diff: chrome_frame/test/simulate_input.h

Issue 2822016: [chrome_frame] Refactor/merge IE no interference tests with other mock event ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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
Index: chrome_frame/test/simulate_input.h
===================================================================
--- chrome_frame/test/simulate_input.h (revision 51119)
+++ chrome_frame/test/simulate_input.h (working copy)
@@ -6,6 +6,7 @@
#define CHROME_FRAME_TEST_SIMULATE_INPUT_H_
#include <windows.h>
+#include <string>
#include "base/basictypes.h"
#include "base/process_util.h"
@@ -55,8 +56,8 @@
// Iterates through all the characters in the string and simulates
// keyboard input. The input goes to the currently active application.
-void SendStringW(const wchar_t* s);
-void SendStringA(const char* s);
+void SendStringW(const std::wstring& s);
+void SendStringA(const std::string& s);
} // end namespace simulate_input

Powered by Google App Engine
This is Rietveld 408576698