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

Unified Diff: webkit/port/platform/chromium/ChromiumBridge.h

Issue 12928: Implement visited link coloring. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years 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/port/platform/chromium/ChromiumBridge.h
===================================================================
--- webkit/port/platform/chromium/ChromiumBridge.h (revision 6868)
+++ webkit/port/platform/chromium/ChromiumBridge.h (working copy)
@@ -85,7 +85,7 @@
#if PLATFORM(WIN_OS)
static bool ensureFontLoaded(HFONT font);
#endif
-
+
// Forms --------------------------------------------------------------
static void notifyFormStateChanged(const Document* doc);
@@ -145,12 +145,15 @@
// URL ----------------------------------------------------------------
static KURL inspectorURL();
+ // Visited links ------------------------------------------------------
+ static LinkHash visitedLinkHash(const UChar* url, unsigned length);
+ static LinkHash visitedLinkHash(const KURL& base,
+ const AtomicString& attributeURL);
+ static bool isLinkVisited(LinkHash);
+
// Widget -------------------------------------------------------------
static void widgetSetCursor(Widget*, const Cursor&);
static void widgetSetFocus(Widget*);
-
- // Link history -------------------------------------------------------
- static bool isLinkVisited(LinkHash);
};
}

Powered by Google App Engine
This is Rietveld 408576698