HomeSort by relevance Sort by last modified time
    Searched refs:PageState (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/chromium_org/content/public/common/
page_state.h 21 // The PageState class represents the information needed by the rendering
27 class CONTENT_EXPORT PageState {
29 static PageState CreateFromEncodedData(const std::string& data);
30 static PageState CreateFromURL(const GURL& url);
32 static PageState CreateForTesting(
38 PageState();
41 bool Equals(const PageState& page_state) const;
45 PageState RemovePasswordData() const;
46 PageState RemoveScrollOffset() const;
47 PageState RemoveReferrer() const
    [all...]
page_state.cc 30 PageState ToPageState(const ExplodedPageState& state) {
33 return PageState();
35 return PageState::CreateFromEncodedData(encoded_data);
61 PageState PageState::CreateFromEncodedData(const std::string& data) {
62 return PageState(data);
66 PageState PageState::CreateFromURL(const GURL& url) {
75 PageState PageState::CreateForTesting
    [all...]
common_param_traits.cc 121 void ParamTraits<content::PageState>::Write(
126 bool ParamTraits<content::PageState>::Read(
131 *r = content::PageState::CreateFromEncodedData(data);
135 void ParamTraits<content::PageState>::Log(
common_param_traits.h 29 class PageState;
72 struct CONTENT_EXPORT ParamTraits<content::PageState> {
73 typedef content::PageState param_type;
context_menu_params.h 98 PageState frame_page_state;
  /external/chromium_org/content/renderer/
history_serialization.h 19 class PageState;
21 CONTENT_EXPORT PageState HistoryEntryToPageState(HistoryEntry* entry);
22 CONTENT_EXPORT PageState SingleHistoryItemToPageState(
25 const PageState& state);
history_serialization.cc 170 PageState HistoryEntryToPageState(HistoryEntry* entry) {
179 return PageState();
181 return PageState::CreateFromEncodedData(encoded_data);
184 PageState SingleHistoryItemToPageState(const WebHistoryItem& item) {
192 return PageState();
194 return PageState::CreateFromEncodedData(encoded_data);
197 scoped_ptr<HistoryEntry> PageStateToHistoryEntry(const PageState& page_state) {
  /external/chromium_org/components/sessions/
serialized_navigation_entry_test_helper.h 19 class PageState;
41 static void SetPageState(const content::PageState& page_state,
serialized_navigation_entry_test_helper.cc 44 content::PageState::CreateFromEncodedData("fake_state");
52 const content::PageState& page_state,
serialized_navigation_entry.h 100 const content::PageState& page_state() const { return page_state_; }
149 content::PageState page_state_;
  /external/chromium_org/content/public/test/
render_view_test.h 37 class PageState;
82 // Returns the current PageState.
83 PageState GetCurrentPageState();
86 // The caller must capture a PageState for the target page.
87 void GoBack(const PageState& state);
88 void GoForward(const PageState& state);
166 void GoToOffset(int offset, const PageState& state);
layouttest_support.h 31 class PageState;
111 std::string DumpBackForwardList(std::vector<PageState>& page_state,
render_view_test.cc 128 PageState RenderViewTest::GetCurrentPageState() {
133 void RenderViewTest::GoBack(const PageState& state) {
137 void RenderViewTest::GoForward(const PageState& state) {
414 void RenderViewTest::GoToOffset(int offset, const PageState& state) {
  /external/chromium_org/content/public/browser/
navigation_entry.h 22 class PageState;
87 virtual void SetPageState(const PageState& state) = 0;
88 virtual const PageState& GetPageState() const = 0;
web_contents.h 51 class PageState;
513 const PageState& page_state)= 0;
web_contents_delegate.h 37 class PageState;
253 const PageState& page_state);
  /external/chromium_org/android_webview/native/
state_serializer_unittest.cc 50 const content::PageState page_state =
51 content::PageState::CreateFromEncodedData("completely bogus state");
state_serializer.cc 121 const content::PageState& page_state =
240 content::PageState::CreateFromEncodedData(content_state));
  /external/chromium_org/content/browser/renderer_host/
render_view_host_delegate.h 46 class PageState;
110 const PageState& state) {}
render_view_host_impl.h 54 class PageState;
390 void OnUpdateState(int32 page_id, const PageState& state);
432 bool CanAccessFilesOfPageState(const PageState& state) const;
  /external/chromium_org/content/shell/renderer/
webkit_test_runner.h 130 const std::vector<std::vector<PageState> >& session_histories,
151 std::vector<std::vector<PageState> > session_histories_;
  /external/chromium_org/content/shell/common/
shell_messages.h 52 std::vector<std::vector<content::PageState> > /* session_histories */,
  /external/chromium_org/content/browser/frame_host/
navigation_entry_impl.h 50 virtual void SetPageState(const PageState& state) OVERRIDE;
51 virtual const PageState& GetPageState() const OVERRIDE;
241 PageState page_state_;
navigation_entry_impl.cc 142 void NavigationEntryImpl::SetPageState(const PageState& state) {
146 const PageState& NavigationEntryImpl::GetPageState() const {
  /external/chromium_org/chrome/browser/ui/
browser_commands.h 22 class PageState;
159 const content::PageState& page_state);

Completed in 386 milliseconds

1 2 3