HomeSort by relevance Sort by last modified time
    Searched defs:PageState (Results 1 - 4 of 4) 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/tools/telemetry/telemetry/page/
page_runner.py 107 class PageState(object):
362 page_state = PageState()
  /packages/apps/Browser/src/com/android/browser/
Tab.java 203 protected static class PageState {
214 PageState(Context c, boolean incognito) {
226 PageState(Context c, boolean incognito, String url, Bitmap favicon) {
240 protected PageState mCurrentState;
339 mCurrentState = new PageState(mContext,
    [all...]

Completed in 286 milliseconds