/external/chromium/chrome/browser/extensions/ |
extension_webnavigation_unittest.cc | 19 // Test that a frame is correctly tracked, and removed once the tab contents 30 navigation_state.TrackFrame(frame_id1, url1, true, false, contents()); 35 navigation_state.TrackFrame(frame_id2, url2, false, false, contents()); 45 // Removing the tab contents should also remove all state of its frames. 46 navigation_state.RemoveTabContentsState(contents()); 58 navigation_state.TrackFrame(frame_id, url, true, false, contents()); 66 navigation_state.TrackFrame(frame_id, GURL(), true, true, contents()); 70 navigation_state.TrackFrame(frame_id, url, true, false, contents()); 82 navigation_state.TrackFrame(frame_id1, url, true, false, contents()); 83 navigation_state.TrackFrame(frame_id2, url, false, false, contents()); [all...] |
/external/chromium_org/chrome/browser/ui/search/ |
instant_page.cc | 25 if (contents()) 26 SearchTabHelper::FromWebContents(contents())->model()->RemoveObserver(this); 30 return contents() ? 31 SearchTabHelper::FromWebContents(contents())->SupportsInstant() : false; 39 return contents() && 40 contents()->GetURL() == GURL(chrome::kChromeSearchLocalNtpUrl); 60 SearchModel* model = SearchTabHelper::FromWebContents(contents())->model(); 80 delegate_->InstantPageAboutToNavigateMainFrame(contents(), url); 90 delegate_->InstantPageLoadFailed(contents()); 102 delegate_->InstantPageLoadFailed(contents()); [all...] |
instant_ntp.cc | 25 if (contents()) 30 DCHECK(!contents()); 33 SetContents(loader_.contents()); 34 content::WebContents* content = contents(); 54 SetContents(loader_.contents());
|
instant_tab.h | 21 // Start observing |contents| for messages. Sends a message to determine if 23 void Init(content::WebContents* contents); 26 static void EmitNtpStatistics(content::WebContents* contents);
|
/external/chromium/chrome/browser/ui/cocoa/ |
hung_renderer_controller.h | 56 // Modifies the dialog to show a warning for the given tab contents. 58 // process with |contents|. The caller must not delete any tab 59 // contents without first calling endForTabContents. 60 - (void)showForTabContents:(TabContents*)contents; 62 // Notifies the dialog that |contents| is either responsive or closed. 63 // If |contents| shares the same render process as the tab contents 65 // If |contents| has a different process, this function does nothing. 66 - (void)endForTabContents:(TabContents*)contents;
|
/external/chromium_org/chrome/browser/android/ |
tab_android.cc | 66 void BrowserTabContents::AttachTabHelpers(content::WebContents* contents) { 69 contents->GetUserData(&kTabHelpersInitializedUserDataKey); 74 contents->SetUserData(&kTabHelpersInitializedUserDataKey, 78 extensions::SetViewType(contents, extensions::VIEW_TYPE_TAB_CONTENTS); 80 Profile* profile = Profile::FromBrowserContext(contents->GetBrowserContext()); 84 SessionTabHelper::CreateForWebContents(contents); 86 AlternateErrorPageTabObserver::CreateForWebContents(contents); 87 autofill::TabAutofillManagerDelegate::CreateForWebContents(contents); 89 contents, 90 autofill::TabAutofillManagerDelegate::FromWebContents(contents), [all...] |
/external/chromium_org/chrome/browser/ui/cocoa/ |
hung_renderer_controller.h | 62 // Modifies the dialog to show a warning for the given tab contents. 64 // process with |contents|. The caller must not delete any tab 65 // contents without first calling endForWebContents. 66 - (void)showForWebContents:(content::WebContents*)contents; 68 // Notifies the dialog that |contents| is either responsive or closed. 69 // If |contents| shares the same render process as the tab contents 71 // If |contents| has a different process, this function does nothing. 72 - (void)endForWebContents:(content::WebContents*)contents;
|
dev_tools_controller.h | 22 // It swaps in the relevant devTools contents for a given WebContents or removes 23 // the view, if there's no devTools contents to show. 26 // A view hosting docked devTools contents. 47 // Depending on |contents|'s state, decides whether the docked web inspector 50 - (void)updateDevToolsForWebContents:(content::WebContents*)contents
|
/external/chromium_org/tools/generate_stubs/ |
generate_stubs_unittest.py | 132 contents = outfile.getvalue() 135 self.assertTrue(contents.startswith("""LIBRARY %s 142 self.assertTrue(re.search(pattern, contents), 143 msg='Expected match of "%s" in %s' % (pattern, contents)) 205 contents = outfile.getvalue() 208 self.assertTrue(contents.find('namespace my_namespace {') != -1) 214 self.assertTrue(contents.find(decl) != -1, 215 msg='Expected "%s" in %s' % (decl, contents)) 220 self.assertTrue(contents.find(decl) != -1, 221 msg='Expected "%s" in %s' % (decl, contents)) [all...] |
/external/android-mock/src/com/google/android/testing/mocking/ |
GeneratedClassFile.java | 19 * Represents the contents of a Class file. 25 private final byte[] contents; field in class:GeneratedClassFile 29 * @param classFileContents the binary contents of the file. 33 contents = classFileContents; 41 return contents;
|
/external/chromium/chrome/browser/ui/cocoa/tab_contents/ |
previewable_contents_controller.h | 13 // PreviewableContentsController manages the display of up to two tab contents 15 // the notion of an "active" view vs. a "preview" tab contents view. 18 // |-activeContainer|. Its contents are meant to be managed by an external 26 // Container view for the "active" contents. 42 // Returns YES if the preview contents is currently showing.
|
/external/chromium_org/tools/json_to_struct/ |
struct_generator.py | 8 contents = field_info['contents'] 9 contents['field'] = '* ' + field_info['field'] 10 if contents['type'] == 'array': 12 return (GenerateField(contents) + ';\n' +
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RenameResourceXmlTextActionTest.java | 76 private void checkClassName(String contents, String expectedClassName) 78 int cursor = contents.indexOf('^'); 79 assertTrue("Must set cursor position with ^ in " + contents, cursor != -1); 80 contents = contents.substring(0, cursor) + contents.substring(cursor + 1); 81 assertEquals(-1, contents.indexOf('^')); 82 assertEquals(-1, contents.indexOf('[')); 83 assertEquals(-1, contents.indexOf(']')); 86 document.replace(0, 0, contents); [all...] |
/external/chromium_org/net/quic/ |
quic_packet_generator_test.cc | 74 // Simple struct for describing the contents of a packet. 146 void CheckPacketContains(const PacketContents& contents, 148 size_t num_retransmittable_frames = contents.num_connection_close_frames + 149 contents.num_goaway_frames + contents.num_rst_stream_frames + 150 contents.num_stream_frames; 151 size_t num_frames = contents.num_feedback_frames + contents.num_ack_frames + 165 EXPECT_EQ(contents.num_ack_frames, simple_framer_.ack_frames().size()); 166 EXPECT_EQ(contents.num_connection_close_frames 258 PacketContents contents; local 290 PacketContents contents; local 332 PacketContents contents; local 346 PacketContents contents; local 383 PacketContents contents; local 418 PacketContents contents; local 526 PacketContents contents; local 559 PacketContents contents; local 606 PacketContents contents; local [all...] |
/external/chromium_org/cc/ |
PRESUBMIT.py | 41 contents = input_api.ReadFile(f, 'rb') 43 if re.search(r"\bASSERT\(", contents): 46 if re.search(r"ASSERT_NOT_REACHED\(", contents): 71 contents = input_api.ReadFile(f, 'rb') 72 if re.search(r"using std::f?abs;", contents): 74 if re.search(r"\bfabsf?\(", contents): 86 if expression.search(contents): 129 contents = input_api.ReadFile(f, 'rb') 133 contents) 145 contents = input_api.ReadFile(f, 'rb' [all...] |
/external/chromium_org/chrome/browser/ui/ |
browser_instant_controller_unittest.cc | 52 content::WebContents* contents) 53 : WebContentsObserver(contents), 54 contents_(contents), 56 url_(contents->GetURL()), 81 content::WebContents* contents() { function in class:chrome::__anon5972::FakeWebContentsObserver 105 content::WebContents* contents = local 111 contents->GetRenderProcessHost()->GetID())) 115 observers.push_back(new FakeWebContentsObserver(this, contents)); 123 content::WebContents* contents = observer->contents(); local 143 content::WebContents* contents = local 161 content::WebContents* contents = observer->contents(); local [all...] |
/external/chromium/base/ |
sys_info_linux.cc | 28 std::string contents; local 29 file_util::ReadFileToString(FilePath("/proc/sys/kernel/shmmax"), &contents); 30 limit = strtoul(contents.c_str(), NULL, 0);
|
/external/chromium/chrome/browser/ui/tab_contents/ |
test_tab_contents_wrapper.cc | 18 TestTabContents* TabContentsWrapperTestHarness::contents() { function in class:TabContentsWrapperTestHarness 26 void TabContentsWrapperTestHarness::SetContents(TestTabContents* contents) { 27 contents_wrapper_.reset(new TabContentsWrapper(contents));
|
/external/chromium/chrome/browser/ui/webui/ |
print_preview_ui.cc | 14 PrintPreviewUI::PrintPreviewUI(TabContents* contents) 15 : WebUI(contents), 22 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source_);
|
/external/chromium_org/chrome/browser/printing/ |
print_preview_dialog_controller.h | 48 // Returns the preview dialog for |contents|. 49 // Returns |contents| if |contents| is a preview dialog. 50 // Returns NULL if no preview dialog exists for |contents|. 52 content::WebContents* contents) const; 63 // Returns true if |contents| is a print preview dialog. 64 static bool IsPrintPreviewDialog(content::WebContents* contents); 93 void OnWebContentsDestroyed(content::WebContents* contents); 97 void OnNavEntryCommitted(content::WebContents* contents, 108 // Adds/Removes observers for notifications from |contents| [all...] |
/external/chromium_org/chrome/browser/resources/inline_login/ |
inline_login.css | 8 #contents, 32 #contents.loading #signin-frame, 33 #contents:not(.loading) #spinner-container {
|
/external/chromium_org/chrome/browser/ui/cocoa/tab_contents/ |
favicon_util_mac.mm | 13 NSImage* FaviconForWebContents(content::WebContents* contents) { 15 contents ? FaviconTabHelper::FromWebContents(contents)
|
overlayable_contents_controller.h | 21 // multiplexed between the tab's contents and an overlay's contents. Now there 27 // Container view for the "active" contents.
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
chroot_file_system_test.py | 24 '404.html': '404.html contents', 26 'a11y.html': 'a11y.html contents', 27 'about_apps.html': 'about_apps.html contents', 29 'file.html': 'file.html contents', 33 'activeTab.html': 'activeTab.html contents', 34 'alarms.html': 'alarms.html contents', 37 'csp.html': 'csp.html contents', 38 'usb.html': 'usb.html contents', 40 'sockets.html': 'sockets.html contents', 51 'moremanifest/usb.html': 'usb.html contents', [all...] |
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-missing-cfbundlesignature.py | 21 test.built_file_must_match('mytarget.app/Contents/PkgInfo', 'APPL????', 24 test.built_file_must_match('myothertarget.app/Contents/PkgInfo', 'APPL????', 27 test.built_file_must_match('thirdtarget.app/Contents/PkgInfo', 'APPL????',
|