diff options
author | mtklein <mtklein@chromium.org> | 2014-06-17 07:42:34 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-06-17 07:42:35 -0700 |
commit | a272d6d0653620cb6b683a70d3e6993d380147d9 (patch) | |
tree | ea312623b40c8cb35d4e3b6e47d965bced5d3fbb /include/core | |
parent | 4c07b6b58f58bc4bcf7b7749076b38a4de843590 (diff) |
Move SkStringUtils.h to src/core.
Doesn't need to be in include/.
BUG=skia:
R=reed@google.com, mtklein@google.com
Author: mtklein@chromium.org
Review URL: https://codereview.chromium.org/335413004
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkStringUtils.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/include/core/SkStringUtils.h b/include/core/SkStringUtils.h deleted file mode 100644 index aa5c809f2c..0000000000 --- a/include/core/SkStringUtils.h +++ /dev/null @@ -1,23 +0,0 @@ -/* - * Copyright 2013 Google Inc. - * - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -#ifndef SkStringUtils_DEFINED -#define SkStringUtils_DEFINED - -class SkString; - -/** - * Add 'flagStr' to 'string' and set 'needSeparator' to true only if 'flag' is - * true. If 'needSeparator' is true append a '|' before 'flagStr'. This method - * is used to streamline the creation of ASCII flag strings within the toString - * methods. - */ -void SkAddFlagToString(SkString* string, bool flag, - const char* flagStr, bool* needSeparator); - - -#endif |