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

Unified Diff: pdf/fading_controls.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/fading_control.cc ('k') | pdf/fading_controls.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/fading_controls.h
diff --git a/pdf/fading_controls.h b/pdf/fading_controls.h
deleted file mode 100644
index 532464b473c51aa21c0265910274df3590ca2a15..0000000000000000000000000000000000000000
--- a/pdf/fading_controls.h
+++ /dev/null
@@ -1,84 +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_FADING_CONTROLS_H_
-#define PDF_FADING_CONTROLS_H_
-
-#include <list>
-
-#include "pdf/control.h"
-
-namespace chrome_pdf {
-
-class FadingControls : public Control,
- public ControlOwner {
- public:
- enum FadingState {
- NONE,
- FADING_IN,
- FADING_OUT
- };
-
- FadingControls();
- virtual ~FadingControls();
- virtual bool CreateFadingControls(
- uint32 id, const pp::Rect& rc, bool visible,
- Control::Owner* delegate, uint8 transparency);
-
- // Control interface.
- 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 EventCaptureReleased();
- virtual void MoveBy(const pp::Point& offset, bool invalidate);
-
- // ControlOwner interface.
- virtual void OnEvent(uint32 control_id, uint32 event_id, void* data);
- virtual void Invalidate(uint32 control_id, const pp::Rect& rc);
- virtual uint32 ScheduleTimer(uint32 control_id, uint32 timeout_ms);
- virtual void SetEventCapture(uint32 control_id, bool set_capture);
- virtual void SetCursor(uint32 control_id, PP_CursorType_Dev cursor_type);
- virtual pp::Instance* GetInstance();
-
- // FadingControls interface
- // This function takes ownership of the control, and will destoy it
- // when control is destroyed.
- // Input control MUST be located inside FadingControls boundaries, and has
- // this instance of FadingControls as a delegate.
- virtual bool AddControl(Control* control);
- virtual void RemoveControl(uint32 control_id);
- virtual Control* GetControl(uint32 id);
- virtual pp::Rect GetControlsRect();
-
- // Expand/Shrink area which triggers inner control appearance to the left.
- virtual bool ExpandLeft(int offset);
-
- // Fade-in, then show controls for time_ms, and then fade-out. Any mouse
- // event in this control area will interrupt splash mode.
- virtual void Splash(uint32 time_ms);
-
- uint8 current_transparency() const { return current_transparency_; }
-
- private:
- bool NotifyControls(const pp::InputEvent& event);
- void FadeIn();
- void FadeOut();
- void OnFadingComplete();
- void CancelSplashMode();
-
- std::list<Control*> controls_;
- FadingState state_;
- uint8 current_transparency_;
- uint32 fading_timer_id_;
- uint32 current_capture_control_;
- uint32 fading_timeout_;
- uint32 alpha_shift_;
- bool splash_;
- uint32 splash_timeout_;
-};
-
-} // namespace chrome_pdf
-
-#endif // PDF_FADING_CONTROLS_H_
-
« no previous file with comments | « pdf/fading_control.cc ('k') | pdf/fading_controls.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698