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

Side by Side Diff: third_party/WebKit/public/platform/Platform.h

Issue 1841653003: Drop |languages| from {Format,Elide}Url* and IDNToUnicode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo in elide_url.cc Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 // FileSystem ---------------------------------------------------------- 221 // FileSystem ----------------------------------------------------------
222 222
223 // Must return non-null. 223 // Must return non-null.
224 virtual WebFileSystem* fileSystem() { return nullptr; } 224 virtual WebFileSystem* fileSystem() { return nullptr; }
225 225
226 // Return a filename-friendly identifier for an origin. 226 // Return a filename-friendly identifier for an origin.
227 virtual WebString fileSystemCreateOriginIdentifier(const WebSecurityOrigin& origin) { return WebString(); } 227 virtual WebString fileSystemCreateOriginIdentifier(const WebSecurityOrigin& origin) { return WebString(); }
228 228
229 // IDN conversion ------------------------------------------------------ 229 // IDN conversion ------------------------------------------------------
230 230
231 virtual WebString convertIDNToUnicode(const WebString& host, const WebString & languages) { return host; } 231 virtual WebString convertIDNToUnicode(const WebString& host) { return host; }
232 232
233 233
234 // IndexedDB ---------------------------------------------------------- 234 // IndexedDB ----------------------------------------------------------
235 235
236 // Must return non-null. 236 // Must return non-null.
237 virtual WebIDBFactory* idbFactory() { return nullptr; } 237 virtual WebIDBFactory* idbFactory() { return nullptr; }
238 238
239 239
240 // Cache Storage ---------------------------------------------------------- 240 // Cache Storage ----------------------------------------------------------
241 241
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 protected: 636 protected:
637 Platform(); 637 Platform();
638 virtual ~Platform() { } 638 virtual ~Platform() { }
639 639
640 WebThread* m_mainThread; 640 WebThread* m_mainThread;
641 }; 641 };
642 642
643 } // namespace blink 643 } // namespace blink
644 644
645 #endif 645 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/forms/EmailInputType.cpp ('k') | ui/message_center/views/notification_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698