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

1 2

  /external/chromium_org/components/sessions/
serialized_navigation_entry_test_helper.h 41 static void SetPageState(const content::PageState& page_state,
serialized_navigation_entry_test_helper.cc 52 const content::PageState& page_state,
54 navigation->page_state_ = page_state;
serialized_navigation_entry_unittest.cc 115 EXPECT_FALSE(navigation.page_state().IsValid());
144 EXPECT_EQ(kPageState, navigation.page_state());
174 EXPECT_EQ(kPageState, navigation.page_state());
209 EXPECT_FALSE(new_navigation.page_state().IsValid());
360 content::PageState page_state = local
362 sync_data.set_state(page_state.ToEncodedData());
373 EXPECT_EQ(page_state, navigation.page_state());
serialized_navigation_entry.cc 237 content::PageState page_state = page_state_; local
239 page_state = page_state.RemovePasswordData();
242 page_state.ToEncodedData());
serialized_navigation_entry.h 17 #include "content/public/common/page_state.h"
100 const content::PageState& page_state() const { return page_state_; } function in class:sessions::SerializedNavigationEntry
  /external/chromium_org/android_webview/native/
state_serializer_unittest.cc 16 #include "content/public/common/page_state.h"
50 const content::PageState page_state = local
63 entry->SetPageState(page_state);
85 EXPECT_EQ(page_state, copy->GetPageState());
state_serializer.cc 17 #include "content/public/common/page_state.h"
121 const content::PageState& page_state = local
124 page_state.GetReferencedFiles();
  /external/chromium_org/content/public/common/
page_state.h 41 bool Equals(const PageState& page_state) const;
  /external/chromium_org/content/public/test/
layouttest_support.h 111 std::string DumpBackForwardList(std::vector<PageState>& page_state,
  /external/chromium_org/content/renderer/
history_serialization.cc 8 #include "content/public/common/page_state.h"
197 scoped_ptr<HistoryEntry> PageStateToHistoryEntry(const PageState& page_state) {
199 if (!DecodePageState(page_state.ToEncodedData(), &state))
render_view_browsertest.cc 394 EXPECT_TRUE(host_nav_params.a.page_state.IsValid());
396 PageStateToHistoryEntry(host_nav_params.a.page_state);
615 params_A.page_state = state_A;
630 // params.page_state of the initial page (e.g., if the new page fails the
641 nav_params.page_state = state_A;
720 params_C.page_state = state_C;
738 params_B.page_state = state_B;
750 params.page_state = state_A;
805 params_A.page_state = state_A;
    [all...]
  /external/chromium_org/content/common/
page_state_serialization_unittest.cc 186 void PopulatePageStateForBackwardsCompatTest(ExplodedPageState* page_state) {
187 page_state->referenced_files.push_back(NS16("file.txt"));
188 PopulateFrameStateForBackwardsCompatTest(&page_state->top, false);
203 path = path.AppendASCII("page_state").AppendASCII(
frame_messages.h 19 #include "content/public/common/page_state.h"
153 IPC_STRUCT_MEMBER(content::PageState, page_state)
226 IPC_STRUCT_MEMBER(content::PageState, page_state)
    [all...]
  /external/chromium_org/content/public/browser/
web_contents_delegate.cc 100 const PageState& page_state) {
web_contents.h 513 const PageState& page_state)= 0;
web_contents_delegate.h 253 const PageState& page_state);
  /external/chromium_org/chrome/browser/sessions/
session_service_unittest.cc 37 #include "content/public/common/page_state.h"
766 content::PageState page_state = local
769 // Create a TabNavigation containing page_state and representing a POST
774 SerializedNavigationEntryTestHelper::SetPageState(page_state, &nav1);
777 // Create a TabNavigation containing page_state and representing a normal
782 SerializedNavigationEntryTestHelper::SetPageState(page_state, &nav2);
805 content::PageState page_state = local
808 // Create a TabNavigation containing page_state and representing a POST
813 SerializedNavigationEntryTestHelper::SetPageState(page_state, &nav1);
825 EXPECT_NE(page_state, windows[0]->tabs[0]->navigations[0].page_state())
    [all...]
session_restore.cc 1055 const content::PageState& page_state = local
    [all...]
  /external/chromium_org/content/browser/frame_host/
navigation_controller_impl_unittest.cc 29 #include "content/public/common/page_state.h"
647 params.page_state = PageState::CreateForTesting(url1, false, 0, 0);
    [all...]
navigator_impl.cc 114 params->page_state = entry.GetPageState();
  /external/chromium_org/chrome/browser/ui/
browser_commands.h 159 const content::PageState& page_state);
  /external/chromium_org/content/test/
test_render_frame_host.cc 159 params.page_state = PageState::CreateForTesting(
test_render_view_host.cc 18 #include "content/public/common/page_state.h"
43 params->page_state = PageState::CreateFromURL(url);
test_web_contents.cc 20 #include "content/public/common/page_state.h"
92 params.page_state = PageState::CreateFromURL(url);
layouttest_support.cc 12 #include "content/public/common/page_state.h"
370 std::string DumpBackForwardList(std::vector<PageState>& page_state,
374 for (size_t index = 0; index < page_state.size(); ++index) {
376 PageStateToHistoryEntry(page_state[index]));

Completed in 976 milliseconds

1 2