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

Unified Diff: Source/testing/runner/TestRunner.cpp

Issue 23190034: Remove code related to title directionality, we never used it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 4 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 | « Source/testing/runner/TestRunner.h ('k') | Source/testing/runner/WebTestProxy.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/testing/runner/TestRunner.cpp
diff --git a/Source/testing/runner/TestRunner.cpp b/Source/testing/runner/TestRunner.cpp
index 555b811a216faa2bdd363b7c209830a78575b9b3..5014944961986030211483890466cd3eece60d91 100644
--- a/Source/testing/runner/TestRunner.cpp
+++ b/Source/testing/runner/TestRunner.cpp
@@ -299,7 +299,6 @@ TestRunner::TestRunner(TestInterfaces* interfaces)
// Properties.
bindProperty("globalFlag", &m_globalFlag);
- bindProperty("titleTextDirection", &m_titleTextDirection);
bindProperty("platformName", &m_platformName);
bindProperty("tooltipText", &m_tooltipText);
bindProperty("disableNotifyDone", &m_disableNotifyDone);
@@ -427,7 +426,6 @@ void TestRunner::reset()
m_httpHeadersToClear.clear();
m_globalFlag.set(false);
- m_titleTextDirection.set("ltr");
m_webHistoryItemCount.set(0);
m_interceptPostMessage.set(false);
m_platformName.set("chromium");
@@ -629,11 +627,6 @@ bool TestRunner::shouldStayOnPageAfterHandlingBeforeUnload() const
return m_shouldStayOnPageAfterHandlingBeforeUnload;
}
-void TestRunner::setTitleTextDirection(WebKit::WebTextDirection dir)
-{
- m_titleTextDirection.set(dir == WebKit::WebTextDirectionLeftToRight ? "ltr" : "rtl");
-}
-
const std::set<std::string>* TestRunner::httpHeadersToClear() const
{
return &m_httpHeadersToClear;
« no previous file with comments | « Source/testing/runner/TestRunner.h ('k') | Source/testing/runner/WebTestProxy.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698