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

Unified Diff: ui/base/webui/web_ui_util.h

Issue 645853013: Remove some platform specific stuff from views. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 | « ui/base/webui/jstemplate_builder.cc ('k') | ui/base/webui/web_ui_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/webui/web_ui_util.h
diff --git a/ui/base/webui/web_ui_util.h b/ui/base/webui/web_ui_util.h
deleted file mode 100644
index 85f5fd900439d9fdbb9c3831a30a6639787a4f85..0000000000000000000000000000000000000000
--- a/ui/base/webui/web_ui_util.h
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UI_BASE_WEBUI_WEB_UI_UTIL_H_
-#define UI_BASE_WEBUI_WEB_UI_UTIL_H_
-
-#include <string>
-
-#include "base/strings/string_piece.h"
-#include "base/values.h"
-#include "ui/base/ui_base_export.h"
-#include "ui/base/window_open_disposition.h"
-
-class GURL;
-class SkBitmap;
-
-namespace webui {
-
-// Convenience routine to convert SkBitmap object to data url
-// so that it can be used in WebUI.
-UI_BASE_EXPORT std::string GetBitmapDataUrl(const SkBitmap& bitmap);
-
-// Convenience routine to get data url that corresponds to given
-// resource_id as a bitmap. This function does not check if the
-// resource for the |resource_id| is a bitmap, therefore it is the
-// caller's responsibility to make sure the resource is indeed a
-// bitmap. Returns empty string if a resource does not exist for given
-// |resource_id|.
-UI_BASE_EXPORT std::string GetBitmapDataUrlFromResource(int resource_id);
-
-// Extracts a disposition from click event arguments. |args| should contain
-// an integer button and booleans alt key, ctrl key, meta key, and shift key
-// (in that order), starting at |start_index|.
-UI_BASE_EXPORT WindowOpenDisposition
- GetDispositionFromClick(const base::ListValue* args, int start_index);
-
-// Pares a formatted scale factor string into float and sets to |scale_factor|.
-UI_BASE_EXPORT bool ParseScaleFactor(const base::StringPiece& identifier,
- float* scale_factor);
-
-// Parses a URL containing some path @{scale}x. If it does not contain a scale
-// factor then the default scale factor is returned.
-UI_BASE_EXPORT void ParsePathAndScale(const GURL& url,
- std::string* path,
- float* scale_factor);
-
-// Helper function to set the font family, size, and text direction into the
-// given dictionary.
-UI_BASE_EXPORT void SetFontAndTextDirection(
- base::DictionaryValue* localized_strings);
-
-} // namespace webui
-
-#endif // UI_BASE_WEBUI_WEB_UI_UTIL_H_
« no previous file with comments | « ui/base/webui/jstemplate_builder.cc ('k') | ui/base/webui/web_ui_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698