summaryrefslogtreecommitdiffstats
path: root/webkit/glue
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue')
-rw-r--r--webkit/glue/webkit_glue.h8
-rw-r--r--webkit/glue/webkitclient_impl.cc14
-rw-r--r--webkit/glue/webkitclient_impl.h5
3 files changed, 0 insertions, 27 deletions
diff --git a/webkit/glue/webkit_glue.h b/webkit/glue/webkit_glue.h
index ba5d405..f52d902 100644
--- a/webkit/glue/webkit_glue.h
+++ b/webkit/glue/webkit_glue.h
@@ -190,14 +190,6 @@ void ClipboardReadHTML(Clipboard::Buffer buffer, string16* markup, GURL* url);
// Returns true if successful, false otherwise.
bool GetApplicationDirectory(FilePath* path);
-// Gets the URL where the inspector's HTML file resides. It must use the
-// protocol returned by GetUIResourceProtocol.
-GURL GetInspectorURL();
-
-// Gets the protocol that is used for all user interface resources, including
-// the Inspector. It must end with "-resource".
-std::string GetUIResourceProtocol();
-
// Gets the directory where the launching executable resides on disk.
// Path is an output parameter to receive the path.
// Returns true if successful, false otherwise.
diff --git a/webkit/glue/webkitclient_impl.cc b/webkit/glue/webkitclient_impl.cc
index 0bb2edca..a578d7c 100644
--- a/webkit/glue/webkitclient_impl.cc
+++ b/webkit/glue/webkitclient_impl.cc
@@ -414,18 +414,4 @@ WebKit::WebURL WebKitClientImpl::filePathToURL(const WebKit::WebString& path) {
return webkit_glue::KURLToWebURL(webkit_glue::GURLToKURL(file_url));
}
-//--------------------------------------------------------------------------
-// BEGIN(TemporaryGlue)
-
-// These are temporary methods that the WebKit layer can use to call to the
-// Glue layer. Once the Glue layer moves entirely into the WebKit layer, these
-// methods will be deleted.
-
-WebCore::String WebKitClientImpl::uiResourceProtocol() {
- return StdStringToString(webkit_glue::GetUIResourceProtocol());
-}
-
-// END(TemporaryGlue)
-//--------------------------------------------------------------------------
-
} // namespace webkit_glue
diff --git a/webkit/glue/webkitclient_impl.h b/webkit/glue/webkitclient_impl.h
index e190465..8b6ab37 100644
--- a/webkit/glue/webkitclient_impl.h
+++ b/webkit/glue/webkitclient_impl.h
@@ -79,11 +79,6 @@ class WebKitClientImpl : public WebKit::WebKitClient {
virtual void stopSharedTimer();
virtual void callOnMainThread(void (*func)());
- // These are temporary methods that the WebKit layer can use to call to the
- // Glue layer. Once the Glue layer moves entirely into the WebKit layer,
- // these methods will be deleted.
- virtual WebCore::String uiResourceProtocol();
-
private:
void DoTimeout() {
if (shared_timer_func_)