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

Unified Diff: webkit/tools/test_shell/webview_host_win.cc

Issue 15028002: Delete test_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add dummy test_shell build target. Created 7 years, 7 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
Index: webkit/tools/test_shell/webview_host_win.cc
diff --git a/webkit/tools/test_shell/webview_host_win.cc b/webkit/tools/test_shell/webview_host_win.cc
deleted file mode 100644
index 85ea5fa108904186f58da41978adadc8dca35b2c..0000000000000000000000000000000000000000
--- a/webkit/tools/test_shell/webview_host_win.cc
+++ /dev/null
@@ -1,56 +0,0 @@
-// Copyright (c) 2012 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 "webkit/tools/test_shell/webview_host.h"
-
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebSettings.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
-#include "ui/base/win/hwnd_util.h"
-#include "ui/gfx/rect.h"
-#include "ui/gfx/size.h"
-#include "webkit/glue/webpreferences.h"
-#include "webkit/tools/test_shell/test_webview_delegate.h"
-
-using namespace WebKit;
-
-static const wchar_t kWindowClassName[] = L"WebViewHost";
-
-/*static*/
-WebViewHost* WebViewHost::Create(HWND parent_view,
- TestWebViewDelegate* delegate,
- WebDevToolsAgentClient* dev_tools_client,
- const WebPreferences& prefs) {
- WebViewHost* host = new WebViewHost();
-
- static bool registered_class = false;
- if (!registered_class) {
- WNDCLASSEX wcex = {0};
- wcex.cbSize = sizeof(wcex);
- wcex.style = CS_DBLCLKS;
- wcex.lpfnWndProc = WebWidgetHost::WndProc;
- wcex.hInstance = GetModuleHandle(NULL);
- wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
- wcex.lpszClassName = kWindowClassName;
- RegisterClassEx(&wcex);
- registered_class = true;
- }
-
- host->view_ = CreateWindow(kWindowClassName, NULL,
- WS_CHILD|WS_CLIPCHILDREN|WS_CLIPSIBLINGS, 0, 0,
- 0, 0, parent_view, NULL,
- GetModuleHandle(NULL), NULL);
- ui::SetWindowUserData(host->view_, host);
-
- host->webwidget_ = WebView::create(delegate);
- host->webview()->setDevToolsAgentClient(dev_tools_client);
- webkit_glue::ApplyWebPreferences(prefs, host->webview());
- host->webview()->settings()->setExperimentalCSSGridLayoutEnabled(true);
- host->webview()->initializeMainFrame(delegate);
-
- return host;
-}
-
-WebView* WebViewHost::webview() const {
- return static_cast<WebView*>(webwidget_);
-}

Powered by Google App Engine
This is Rietveld 408576698