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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
// Copyright (c) 2011 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_UI_WEBUI_SCREENSHOT_SOURCE_H_
#define CHROME_BROWSER_UI_WEBUI_SCREENSHOT_SOURCE_H_
#include <map>
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/memory/linked_ptr.h"
#include "content/public/browser/url_data_source.h"
#if defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/drive/drive_resource_metadata.h"
#include "chrome/browser/chromeos/login/user_manager.h"
#include "chrome/browser/google_apis/gdata_errorcode.h"
#endif
typedef std::vector<unsigned char> ScreenshotData;
typedef linked_ptr<ScreenshotData> ScreenshotDataPtr;
class Profile;
namespace base {
class FilePath;
}
// ScreenshotSource is the data source that serves screenshots (saved
// or current) to the bug report html ui.
class ScreenshotSource : public content::URLDataSource {
public:
explicit ScreenshotSource(
std::vector<unsigned char>* current_screenshot,
Profile* profile);
#if defined(USE_ASH)
// Queries the browser process to determine if screenshots are disabled.
static bool AreScreenshotsDisabled();
// Common access for the screenshot directory, parameter is set to the
// requested directory and return value of true is given upon success.
static bool GetScreenshotDirectory(base::FilePath* directory);
#endif
// Get the basefilename for screenshots
static std::string GetScreenshotBaseFilename();
// content::URLDataSource implementation.
virtual std::string GetSource() OVERRIDE;
virtual void StartDataRequest(
const std::string& path,
bool is_incognito,
const content::URLDataSource::GotDataCallback& callback) OVERRIDE;
virtual std::string GetMimeType(const std::string&) const OVERRIDE;
// Get the screenshot specified by the given relative path that we've cached
// from a previous request to the screenshots source.
// Note: This method strips the query string from the given path.
ScreenshotDataPtr GetCachedScreenshot(const std::string& screenshot_path);
// Url that represents the base directory for screenshots.
static const char kScreenshotUrlRoot[];
// Identifier for the current screenshot
// (relative to screenshot base directory).
static const char kScreenshotCurrent[];
// Path for directory where screenshots are saved
// (relative to screenshot base directory).
static const char kScreenshotSaved[];
#if defined(OS_CHROMEOS)
// Common prefix to screenshot filenames.
static const char kScreenshotPrefix[];
// Common suffix to screenshot filenames.
static const char kScreenshotSuffix[];
#endif
private:
virtual ~ScreenshotSource();
// Send the screenshot specified by the given relative path to the requestor.
// This is the ancestor for SendSavedScreenshot and CacheAndSendScreenshot.
// All calls to send a screenshot should only call this method.
// Note: This method strips the query string from the given path.
void SendScreenshot(const std::string& screenshot_path,
const content::URLDataSource::GotDataCallback& callback);
#if defined(OS_CHROMEOS)
// Send a saved screenshot image file specified by the given screenshot path
// to the requestor.
void SendSavedScreenshot(
const std::string& screenshot_path,
const content::URLDataSource::GotDataCallback& callback,
const base::FilePath& file);
// The callback for Drive's getting file method.
void GetSavedScreenshotCallback(
const std::string& screenshot_path,
const content::URLDataSource::GotDataCallback& callback,
drive::DriveFileError error,
const base::FilePath& file,
const std::string& unused_mime_type,
drive::DriveFileType file_type);
#endif
// Sends the screenshot data to the requestor while caching it locally to the
// class instance, indexed by path.
void CacheAndSendScreenshot(
const std::string& screenshot_path,
const content::URLDataSource::GotDataCallback& callback,
ScreenshotDataPtr bytes);
// Pointer to the screenshot data for the current screenshot.
ScreenshotDataPtr current_screenshot_;
Profile* profile_;
// Key: Relative path to the screenshot (including filename)
// Value: Pointer to the screenshot data associated with the path.
std::map<std::string, ScreenshotDataPtr> cached_screenshots_;
DISALLOW_COPY_AND_ASSIGN(ScreenshotSource);
};
#endif // CHROME_BROWSER_UI_WEBUI_SCREENSHOT_SOURCE_H_
|