OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:open_with_links
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/google_apis/drive/
drive_api_parser_unittest.cc
190
ASSERT_EQ(1U, file1.
open_with_links
().size());
191
EXPECT_EQ("1234567890", file1.
open_with_links
()[0].app_id);
193
file1.
open_with_links
()[0].open_url);
227
EXPECT_EQ(0U, file2.
open_with_links
().size());
240
EXPECT_EQ(0U, file3.
open_with_links
().size());
drive_api_parser.h
562
const std::vector<OpenWithLink>&
open_with_links
() const {
function in class:google_apis::FileResource
/external/chromium_org/chrome/browser/drive/
drive_api_service.cc
258
const std::vector<FileResource::OpenWithLink>&
open_with_links
=
local
259
value->
open_with_links
();
260
for (size_t i = 0; i <
open_with_links
.size(); ++i) {
261
if (
open_with_links
[i].app_id == app_id) {
262
callback.Run(HTTP_SUCCESS,
open_with_links
[i].open_url);
Completed in 4285 milliseconds