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

Unified Diff: Source/core/page/PagePopupClient.cpp

Issue 736883002: Implement <select> Popup Menu using PagePopup (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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
Index: Source/core/page/PagePopupClient.cpp
diff --git a/Source/core/page/PagePopupClient.cpp b/Source/core/page/PagePopupClient.cpp
index 11aeb123f46098533a5e7cff8a08369fd5d1dd10..f66d90f8e68b4fd590d683ae170036d7c32af55c 100644
--- a/Source/core/page/PagePopupClient.cpp
+++ b/Source/core/page/PagePopupClient.cpp
@@ -31,6 +31,7 @@
#include "config.h"
#include "core/page/PagePopupClient.h"
+#include "platform/text/PlatformLocale.h"
#include "wtf/text/StringBuilder.h"
namespace blink {
@@ -109,5 +110,10 @@ void PagePopupClient::addProperty(const char* name, const IntRect& rect, SharedB
addLiteral("},\n", data);
}
+Locale& PagePopupClient::locale()
tkent 2014/12/15 09:26:04 Why do you add default implementation?
keishi 2014/12/16 03:53:24 Removed.
+{
+ return Locale::defaultLocale();
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698