From a62545c15526a03ae7a1cee64908f851edeeb118 Mon Sep 17 00:00:00 2001 From: stippi Date: Fri, 19 Feb 2010 15:47:21 +0000 Subject: [PATCH] Renamed WebProcess to WebPage. git-svn-id: http://svn.haiku-os.org/webpositive/webkit/trunk@146 94f232f2-1747-11df-bad5-a5bfde151594 --- src/apps/webpositive/DownloadWindow.cpp | 2 +- src/apps/webpositive/LauncherApp.cpp | 6 +++--- src/apps/webpositive/LauncherWindow.cpp | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/apps/webpositive/DownloadWindow.cpp b/src/apps/webpositive/DownloadWindow.cpp index ea0492b402..f6e94b1072 100644 --- a/src/apps/webpositive/DownloadWindow.cpp +++ b/src/apps/webpositive/DownloadWindow.cpp @@ -29,7 +29,7 @@ #include "DownloadWindow.h" #include "WebDownload.h" -#include "WebProcess.h" +#include "WebPage.h" #include #include #include diff --git a/src/apps/webpositive/LauncherApp.cpp b/src/apps/webpositive/LauncherApp.cpp index 69713a886e..bbede28b06 100644 --- a/src/apps/webpositive/LauncherApp.cpp +++ b/src/apps/webpositive/LauncherApp.cpp @@ -33,7 +33,7 @@ #include "FrameView.h" #include "GraphicsContext.h" #include "LauncherWindow.h" -#include "WebProcess.h" +#include "WebPage.h" #include "WebView.h" #include "WebViewConstants.h" #include @@ -92,8 +92,8 @@ void LauncherApp::ArgvReceived(int32 argc, char** argv) void LauncherApp::ReadyToRun() { - WebProcess::initializeOnce(); - WebProcess::setCacheModel(WEBKIT_CACHE_MODEL_WEB_BROWSER); + WebPage::initializeOnce(); + WebPage::setCacheModel(WEBKIT_CACHE_MODEL_WEB_BROWSER); BFile settingsFile; BRect windowFrameFromSettings = m_lastWindowFrame; diff --git a/src/apps/webpositive/LauncherWindow.cpp b/src/apps/webpositive/LauncherWindow.cpp index fb654ef5ac..0e820b4ab3 100644 --- a/src/apps/webpositive/LauncherWindow.cpp +++ b/src/apps/webpositive/LauncherWindow.cpp @@ -34,7 +34,7 @@ #include "AuthenticationPanel.h" #include "BrowsingHistory.h" -#include "WebProcess.h" +#include "WebPage.h" #include "WebView.h" #include "WebViewConstants.h" #include @@ -200,7 +200,7 @@ LauncherWindow::LauncherWindow(BRect frame, const BMessenger& downloadListener, ); } - webView()->webProcess()->setDownloadListener(downloadListener); + webView()->webPage()->setDownloadListener(downloadListener); m_findGroup->SetVisible(false); @@ -367,7 +367,7 @@ void LauncherWindow::newWindowRequested(const BString& url) { // Always open new windows in the application thread, since // creating a WebView will try to grab the application lock. - // But our own WebProcess may already try to lock us from within + // But our own WebPage may already try to lock us from within // the application thread -> dead-lock. BMessage message(NEW_WINDOW); message.AddString("url", url);