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

Unified Diff: content/shell/app/webkit_test_platform_support_win.cc

Issue 642813006: content: Rename webkit_test_platform_support* to blink_test_platform_support* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix GN 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 | « content/shell/app/webkit_test_platform_support_mac.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/app/webkit_test_platform_support_win.cc
diff --git a/content/shell/app/webkit_test_platform_support_win.cc b/content/shell/app/webkit_test_platform_support_win.cc
deleted file mode 100644
index d403ff373e196b1e13ee14572ec789c1f69c9c4d..0000000000000000000000000000000000000000
--- a/content/shell/app/webkit_test_platform_support_win.cc
+++ /dev/null
@@ -1,117 +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.
-
-#include "content/shell/app/webkit_test_platform_support.h"
-
-#include <windows.h>
-#include <iostream>
-#include <list>
-#include <string>
-
-#include "base/command_line.h"
-#include "base/files/file_path.h"
-#include "base/files/file_util.h"
-#include "base/logging.h"
-#include "base/path_service.h"
-#include "base/strings/utf_string_conversions.h"
-#include "content/shell/common/shell_switches.h"
-
-#define SIZEOF_STRUCT_WITH_SPECIFIED_LAST_MEMBER(struct_name, member) \
- offsetof(struct_name, member) + \
- (sizeof static_cast<struct_name*>(0)->member)
-#define NONCLIENTMETRICS_SIZE_PRE_VISTA \
- SIZEOF_STRUCT_WITH_SPECIFIED_LAST_MEMBER(NONCLIENTMETRICS, lfMessageFont)
-
-namespace content {
-
-namespace {
-
-bool SetupFonts() {
- // Load Ahem font.
- // AHEM____.TTF is copied to the directory of DumpRenderTree.exe by
- // WebKit.gyp.
- base::FilePath base_path;
- PathService::Get(base::DIR_MODULE, &base_path);
- base::FilePath font_path =
- base_path.Append(FILE_PATH_LITERAL("/AHEM____.TTF"));
-
- // We do two registrations:
- // 1. For GDI font rendering via ::AddFontMemResourceEx.
- // 2. For DirectWrite rendering by appending a command line flag that tells
- // the sandbox policy/warmup to grant access to the given path.
-
- // GDI registration.
- std::string font_buffer;
- if (!base::ReadFileToString(font_path, &font_buffer)) {
- std::cerr << "Failed to load font " << base::WideToUTF8(font_path.value())
- << "\n";
- return false;
- }
-
- DWORD num_fonts = 1;
- HANDLE font_handle =
- ::AddFontMemResourceEx(const_cast<char*>(font_buffer.c_str()),
- font_buffer.length(),
- 0,
- &num_fonts);
- if (!font_handle) {
- std::cerr << "Failed to register Ahem font\n";
- return false;
- }
-
- // DirectWrite sandbox registration.
- CommandLine& command_line = *base::CommandLine::ForCurrentProcess();
- command_line.AppendSwitchASCII(switches::kRegisterFontFiles,
- base::WideToUTF8(font_path.value()));
-
- return true;
-}
-
-} // namespace
-
-bool CheckLayoutSystemDeps() {
- std::list<std::string> errors;
-
- // This metric will be 17 when font size is "Normal".
- // The size of drop-down menus depends on it.
- if (::GetSystemMetrics(SM_CXVSCROLL) != 17)
- errors.push_back("Must use normal size fonts (96 dpi).");
-
- // Check that we're using the default system fonts.
- OSVERSIONINFO version_info = {0};
- version_info.dwOSVersionInfoSize = sizeof(version_info);
- ::GetVersionEx(&version_info);
- bool is_vista_or_later = (version_info.dwMajorVersion >= 6);
- NONCLIENTMETRICS metrics = {0};
- metrics.cbSize = is_vista_or_later ? sizeof(NONCLIENTMETRICS)
- : NONCLIENTMETRICS_SIZE_PRE_VISTA;
- bool success = !!::SystemParametersInfo(
- SPI_GETNONCLIENTMETRICS, metrics.cbSize, &metrics, 0);
- CHECK(success);
- LOGFONTW* system_fonts[] =
- {&metrics.lfStatusFont, &metrics.lfMenuFont, &metrics.lfSmCaptionFont};
- const wchar_t* required_font = is_vista_or_later ? L"Segoe UI" : L"Tahoma";
- int required_font_size = is_vista_or_later ? -12 : -11;
- for (size_t i = 0; i < arraysize(system_fonts); ++i) {
- if (system_fonts[i]->lfHeight != required_font_size ||
- wcscmp(required_font, system_fonts[i]->lfFaceName)) {
- errors.push_back(is_vista_or_later
- ? "Must use either the Aero or Basic theme."
- : "Must use the default XP theme (Luna).");
- break;
- }
- }
-
- for (std::list<std::string>::iterator it = errors.begin(); it != errors.end();
- ++it) {
- std::cerr << *it << "\n";
- }
- return errors.empty();
-}
-
-bool WebKitTestPlatformInitialize() {
- return SetupFonts();
-}
-
-} // namespace content
« no previous file with comments | « content/shell/app/webkit_test_platform_support_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698