summaryrefslogtreecommitdiffstats
path: root/chrome/browser/search/local_files_ntp_source.h
blob: c71041b305edb2c2bce410de991d6e5f38a7a578 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_SEARCH_LOCAL_FILES_NTP_SOURCE_H_
#define CHROME_BROWSER_SEARCH_LOCAL_FILES_NTP_SOURCE_H_

#if !defined(GOOGLE_CHROME_BUILD) && !defined(OS_IOS)

#include <string>
#include "content/public/browser/url_data_source.h"

namespace local_ntp {

// Sends the content of |path| to |callback|, reading |path| as a local file.
// This function is only used for dev builds.
void SendLocalFileResource(
    const std::string& path,
    const content::URLDataSource::GotDataCallback& callback);

// Sends the content of |path| to |callback|, reading |path| as a local file.
// It also replaces the first occurrence of {{ORIGIN}} with |origin|.
// This function is only used for dev builds.
void SendLocalFileResourceWithOrigin(
    const std::string& path,
    const std::string& origin,
    const content::URLDataSource::GotDataCallback& callback);

}  // namespace local_ntp

#endif  // !defined(GOOGLE_CHROME_BUILD) && !defined(OS_IOS)
#endif  // CHROME_BROWSER_SEARCH_LOCAL_FILES_NTP_SOURCE_H_