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

Unified Diff: pdf/thumbnail_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/progress_control.cc ('k') | pdf/thumbnail_control.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/thumbnail_control.h
diff --git a/pdf/thumbnail_control.h b/pdf/thumbnail_control.h
deleted file mode 100644
index d10a32896d6f580fa090db4134861b5d34945c1b..0000000000000000000000000000000000000000
--- a/pdf/thumbnail_control.h
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright (c) 2010 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_THUMBNAIL_CONTROL_H_
-#define PDF_THUMBNAIL_CONTROL_H_
-
-#include <map>
-#include <vector>
-
-#include "pdf/control.h"
-#include "pdf/pdf_engine.h"
-#include "ppapi/cpp/input_event.h"
-
-namespace chrome_pdf {
-
-class NumberImageGenerator;
-
-class ThumbnailControl : public Control {
- public:
- enum ThumbnailEventIds {
- EVENT_ID_THUMBNAIL_SELECTED = 100,
- };
-
- explicit ThumbnailControl();
- virtual ~ThumbnailControl();
-
- // Sets current position of the thumnail control.
- void SetPosition(int position, int total, bool invalidate);
- void SlideIn();
- void SlideOut();
-
- virtual bool CreateThumbnailControl(
- uint32 id, const pp::Rect& rc,
- bool visible, Owner* owner, PDFEngine* engine,
- NumberImageGenerator* number_image_generator);
-
- // Control interface.
- virtual void Show(bool visible, bool invalidate);
- virtual void Paint(pp::ImageData* image_data, const pp::Rect& rc);
- virtual bool HandleEvent(const pp::InputEvent& event);
- virtual void OnTimerFired(uint32 timer_id);
-
- virtual void ResetEngine(PDFEngine* engine);
-
- private:
- void ClearCache();
-
- struct PageInfo {
- int index;
- pp::Rect rect;
- };
-
- PDFEngine* engine_;
- pp::Rect visible_rect_;
- std::vector<PageInfo> visible_pages_;
- std::map<int, pp::ImageData*> image_cache_;
- int sliding_width_;
- int sliding_shift_;
- int sliding_timeout_;
- uint32 sliding_timer_id_;
- NumberImageGenerator* number_image_generator_;
-};
-
-} // namespace chrome_pdf
-
-#endif // PDF_THUMBNAIL_CONTROL_H_
« no previous file with comments | « pdf/progress_control.cc ('k') | pdf/thumbnail_control.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698