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

Unified Diff: fpdfsdk/src/fpdfformfill_embeddertest.cpp

Issue 1411043008: Fix the build after commit 8cadf995e9a0. (Closed) Base URL: https://pdfium.googlesource.com/pdfium@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | testing/embedder_test_timer_handling_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fpdfsdk/src/fpdfformfill_embeddertest.cpp
diff --git a/fpdfsdk/src/fpdfformfill_embeddertest.cpp b/fpdfsdk/src/fpdfformfill_embeddertest.cpp
index aef1b812333fb610a82a5c7fb99387da31fbb2af..53cdcbd041aadfc355890c49392f034616163ba6 100644
--- a/fpdfsdk/src/fpdfformfill_embeddertest.cpp
+++ b/fpdfsdk/src/fpdfformfill_embeddertest.cpp
@@ -6,7 +6,6 @@
#include "../../testing/embedder_test.h"
#include "../../testing/embedder_test_mock_delegate.h"
#include "../../testing/embedder_test_timer_handling_delegate.h"
-#include "../../testing/test_support.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -79,10 +78,8 @@ TEST_F(FPDFFormFillEmbeddertest, BUG_551248) {
const auto& alerts = delegate.GetAlerts();
ASSERT_EQ(1U, alerts.size());
- std::wstring message = GetWideString(alerts[0].message);
- std::wstring title = GetWideString(alerts[0].title);
- EXPECT_STREQ(L"hello world", message.c_str());
- EXPECT_STREQ(L"Alert", title.c_str());
+ EXPECT_STREQ(L"hello world", alerts[0].message.c_str());
+ EXPECT_STREQ(L"Alert", alerts[0].title.c_str());
EXPECT_EQ(0, alerts[0].type);
EXPECT_EQ(0, alerts[0].icon);
}
« no previous file with comments | « no previous file | testing/embedder_test_timer_handling_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698