Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Unified Diff: pdf/progress_control.h

Issue 1125103002: Remove the in-process PDF viewer from pdf/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-in-process-instance
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pdf/preview_mode_client.cc ('k') | pdf/progress_control.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/progress_control.h
diff --git a/pdf/progress_control.h b/pdf/progress_control.h
deleted file mode 100644
index 96d5da1ce9b8238c8e81776e860c41f9cf19a488..0000000000000000000000000000000000000000
--- a/pdf/progress_control.h
+++ /dev/null
@@ -1,72 +0,0 @@
-// Copyright (c) 2012 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 PDF_PROGRESS_CONTROL_H_
-#define PDF_PROGRESS_CONTROL_H_
-
-#include <string>
-#include <vector>
-
-#include "pdf/control.h"
-#include "pdf/fading_control.h"
-#include "ppapi/cpp/image_data.h"
-
-namespace chrome_pdf {
-
-class ProgressControl : public FadingControl {
- public:
- static const double kCompleted;
-
- enum ProgressEventIds {
- EVENT_ID_PROGRESS_COMPLETED,
- };
-
- ProgressControl();
- virtual ~ProgressControl();
- virtual bool CreateProgressControl(uint32 id,
- bool visible,
- Control::Owner* delegate,
- double progress,
- float device_scale,
- const std::vector<pp::ImageData>& images,
- const pp::ImageData& background,
- const std::string& text);
- void Reconfigure(const pp::ImageData& background,
- const std::vector<pp::ImageData>& images,
- float device_scale);
-
- static void CalculateLayout(pp::Instance* instance,
- const std::vector<pp::ImageData>& images,
- const pp::ImageData& background,
- const std::string& text,
- float device_scale,
- pp::Size* ctrl_size,
- pp::Rect* image_rc,
- pp::Rect* text_rc);
-
- // Control interface.
- virtual void Paint(pp::ImageData* image_data, const pp::Rect& rc);
-
- // ProgressControl interface
- // Set progress indicator in percents from 0% to 100%.
- virtual void SetProgress(double progress);
-
- private:
- void PrepareBackground();
- void AdjustBackground();
- size_t GetImageIngex() const;
-
- double progress_;
- float device_scale_;
- std::vector<pp::ImageData> images_;
- pp::ImageData background_;
- pp::ImageData ctrl_background_;
- std::string text_;
- pp::Rect image_rc_;
- pp::Rect text_rc_;
-};
-
-} // namespace chrome_pdf
-
-#endif // PDF_PROGRESS_CONTROL_H_
« no previous file with comments | « pdf/preview_mode_client.cc ('k') | pdf/progress_control.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698