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

Side by Side Diff: third_party/cld/encodings/compact_lang_det/win/cld_utf8utils_google3.cc

Issue 12676028: Fix licensecheck on third_party/cld (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2009 Google Inc. All Rights Reserved.
2 // Author: alekseys@google.com (Aleksey Shlyapnikov)
3
4 // This code is not actually used, it was copied here for the reference only.
5 // See cld_htmlutils_windows.cc for Windows version of this code.
6
7 #include "cld/encodings/compact_lang_det/win/cld_utf8utils.h"
8
9 #include "cld/util/utf8/utf8statetable.h"
10
11 namespace cld {
12
13 int UTF8GenericScan(const UTF8ScanObj* st, const char* src, int len,
14 int* bytes_consumed) {
15 return ::UTF8GenericScan(st, StringPiece(src, len), bytes_consumed);
16 }
17
18 } // namespace cld
OLDNEW
« no previous file with comments | « third_party/cld/encodings/compact_lang_det/subsetsequence_unittest.cc ('k') | tools/checklicenses/checklicenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698