OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PageState
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/content/public/common/
page_state.h
21
// The
PageState
class represents the information needed by the rendering
29
class CONTENT_EXPORT
PageState
{
31
static
PageState
CreateFromEncodedData(const std::string& data);
32
static
PageState
CreateFromURL(const GURL& url);
34
static
PageState
CreateForTesting(
40
PageState
();
43
bool Equals(const
PageState
& page_state) const;
47
PageState
RemovePasswordData() const;
48
PageState
RemoveScrollOffset() const;
51
PageState
(const std::string& data)
[
all
...]
page_state.cc
30
PageState
ToPageState(const ExplodedPageState& state) {
33
return
PageState
();
35
return
PageState
::CreateFromEncodedData(encoded_data);
50
PageState
PageState
::CreateFromEncodedData(const std::string& data) {
51
return
PageState
(data);
55
PageState
PageState
::CreateFromURL(const GURL& url) {
65
PageState
PageState
::CreateForTesting
[
all
...]
/external/chromium_org/chrome/browser/resources/history/
history.js
27
var
pageState
;
838
pageState
.setUIState(this.model_.getSearchText(),
855
pageState
.setUIState(this.model_.getSearchText(),
[
all
...]
/external/chromium_org/tools/telemetry/telemetry/page/
page_runner.py
134
class
PageState
(object):
429
page_state =
PageState
(page, test.TabForPage(page, state.browser))
/packages/apps/Browser/src/com/android/browser/
Tab.java
206
protected static class
PageState
{
217
PageState
(Context c, boolean incognito) {
229
PageState
(Context c, boolean incognito, String url, Bitmap favicon) {
243
protected
PageState
mCurrentState;
342
mCurrentState = new
PageState
(mContext,
[
all
...]
Completed in 248 milliseconds