summaryrefslogtreecommitdiffstats
path: root/webkit/api/public/WebFrame.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/api/public/WebFrame.h')
-rw-r--r--webkit/api/public/WebFrame.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/webkit/api/public/WebFrame.h b/webkit/api/public/WebFrame.h
index 72ae9bb..bf740da 100644
--- a/webkit/api/public/WebFrame.h
+++ b/webkit/api/public/WebFrame.h
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2009 Google Inc. All rights reserved.
- *
+ *
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
- *
+ *
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
@@ -14,7 +14,7 @@
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
- *
+ *
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -161,7 +161,7 @@ namespace WebKit {
virtual void loadURL(const WebURLRequest&) = 0;
virtual void loadData(const WebData& data,
- const WebString& mimeType,
+ const WebString& mimeType,
const WebString& textEncoding,
const WebURL& baseURL,
const WebURL& unreachableURL,
@@ -184,11 +184,11 @@ namespace WebKit {
// Returns the previous history item. Check WebHistoryItem::isNull()
// before using.
- virtual const WebHistoryItem& previousHistoryItem() = 0;
+ virtual WebHistoryItem previousHistoryItem() = 0;
// Returns the current history item. Check WebHistoryItem::isNull()
// before using.
- virtual const WebHistoryItem& currentHistoryItem() = 0;
+ virtual WebHistoryItem currentHistoryItem() = 0;
// View-source rendering mode. Set this before loading an URL to cause
// it to be rendered in view-source mode.