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

Side by Side Diff: third_party/WebKit/WebKit/chromium/public/WebDocument.h

Issue 660137: Allow users to close the find session and activate the current link via ctrl-... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 WEBKIT_API WebURL baseURL() const; 65 WEBKIT_API WebURL baseURL() const;
66 WEBKIT_API WebElement documentElement() const; 66 WEBKIT_API WebElement documentElement() const;
67 WEBKIT_API WebElement body() const; 67 WEBKIT_API WebElement body() const;
68 WEBKIT_API WebElement head(); 68 WEBKIT_API WebElement head();
69 WEBKIT_API WebString title() const; 69 WEBKIT_API WebString title() const;
70 WEBKIT_API WebNodeCollection all(); 70 WEBKIT_API WebNodeCollection all();
71 WEBKIT_API WebURL completeURL(const WebString&) const; 71 WEBKIT_API WebURL completeURL(const WebString&) const;
72 WEBKIT_API WebElement getElementById(const WebString& id) const; 72 WEBKIT_API WebElement getElementById(const WebString& id) const;
73 WEBKIT_API WebNodeList getElementsByTagName(const WebString&); 73 WEBKIT_API WebNodeList getElementsByTagName(const WebString&);
74 WEBKIT_API WebString applicationID() const; 74 WEBKIT_API WebString applicationID() const;
75 WEBKIT_API WebNode focusedNode() const;
75 76
76 #if WEBKIT_IMPLEMENTATION 77 #if WEBKIT_IMPLEMENTATION
77 WebDocument(const WTF::PassRefPtr<WebCore::Document>&); 78 WebDocument(const WTF::PassRefPtr<WebCore::Document>&);
78 WebDocument& operator=(const WTF::PassRefPtr<WebCore::Document>&); 79 WebDocument& operator=(const WTF::PassRefPtr<WebCore::Document>&);
79 operator WTF::PassRefPtr<WebCore::Document>() const; 80 operator WTF::PassRefPtr<WebCore::Document>() const;
80 #endif 81 #endif
81 }; 82 };
82 83
83 } // namespace WebKit 84 } // namespace WebKit
84 85
85 #endif 86 #endif
OLDNEW
« no previous file with comments | « chrome/test/data/find_in_page/link.html ('k') | third_party/WebKit/WebKit/chromium/public/WebNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698