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

Side by Side Diff: samplecode/SampleSlides.cpp

Issue 831113002: Cleanup: More override fixes - another round. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « samplecode/SampleShaders.cpp ('k') | samplecode/SampleStrokePath.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 #include "SampleCode.h" 8 #include "SampleCode.h"
9 #include "SkBlurMask.h" 9 #include "SkBlurMask.h"
10 #include "SkBlurMaskFilter.h" 10 #include "SkBlurMaskFilter.h"
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after
690 canvas.restore(); 690 canvas.restore();
691 SkString str; 691 SkString str;
692 str.printf("/skimages/slide_" SK_SIZE_T_SPECIFIER ".png", i); 692 str.printf("/skimages/slide_" SK_SIZE_T_SPECIFIER ".png", i);
693 SkImageEncoder::EncodeFile(str.c_str(), bm, SkImageEncoder::kPNG_Typ e, 100); 693 SkImageEncoder::EncodeFile(str.c_str(), bm, SkImageEncoder::kPNG_Typ e, 100);
694 } 694 }
695 this->setBGColor(BG_COLOR); 695 this->setBGColor(BG_COLOR);
696 } 696 }
697 697
698 protected: 698 protected:
699 // overrides from SkEventSink 699 // overrides from SkEventSink
700 virtual bool onQuery(SkEvent* evt) { 700 virtual bool onQuery(SkEvent* evt) SK_OVERRIDE {
701 if (SampleCode::TitleQ(*evt)) { 701 if (SampleCode::TitleQ(*evt)) {
702 SampleCode::TitleR(evt, "Slides"); 702 SampleCode::TitleR(evt, "Slides");
703 return true; 703 return true;
704 } 704 }
705 return this->INHERITED::onQuery(evt); 705 return this->INHERITED::onQuery(evt);
706 } 706 }
707 707
708 virtual void onDrawContent(SkCanvas* canvas) { 708 virtual void onDrawContent(SkCanvas* canvas) SK_OVERRIDE {
709 this->init(); 709 this->init();
710 gProc[fIndex](canvas); 710 gProc[fIndex](canvas);
711 } 711 }
712 712
713 virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y, unsigned) SK_OVERRIDE { 713 virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y, unsigned) SK_OVERRIDE {
714 this->init(); 714 this->init();
715 fIndex = (fIndex + 1) % SK_ARRAY_COUNT(gProc); 715 fIndex = (fIndex + 1) % SK_ARRAY_COUNT(gProc);
716 this->inval(NULL); 716 this->inval(NULL);
717 return NULL; 717 return NULL;
718 } 718 }
719 719
720 private: 720 private:
721 typedef SampleView INHERITED; 721 typedef SampleView INHERITED;
722 }; 722 };
723 723
724 ////////////////////////////////////////////////////////////////////////////// 724 //////////////////////////////////////////////////////////////////////////////
725 725
726 static SkView* MyFactory() { return new SlideView; } 726 static SkView* MyFactory() { return new SlideView; }
727 static SkViewRegister reg(MyFactory); 727 static SkViewRegister reg(MyFactory);
OLDNEW
« no previous file with comments | « samplecode/SampleShaders.cpp ('k') | samplecode/SampleStrokePath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698