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

Side by Side Diff: include/views/SkOSWindow_Android.h

Issue 1547923002: SampleApp: remove SkWindow::onPDFSaved, it does not work (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 4 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 | « no previous file | include/views/SkWindow.h » ('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 * Copyright 2011 Skia 2 * Copyright 2011 Skia
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkOSWindow_Android_DEFINED 8 #ifndef SkOSWindow_Android_DEFINED
9 #define SkOSWindow_Android_DEFINED 9 #define SkOSWindow_Android_DEFINED
10 10
(...skipping 18 matching lines...) Expand all
29 }; 29 };
30 30
31 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo* info); 31 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo* info);
32 void detach(); 32 void detach();
33 void present(); 33 void present();
34 bool makeFullscreen() { return true; } 34 bool makeFullscreen() { return true; }
35 void closeWindow(); 35 void closeWindow();
36 void setVsync(bool); 36 void setVsync(bool);
37 bool destroyRequested() { return fDestroyRequested; } 37 bool destroyRequested() { return fDestroyRequested; }
38 38
39 virtual void onPDFSaved(const char title[], const char desc[], const char pa th[]);
40
41 protected: 39 protected:
42 // overrides from SkWindow 40 // overrides from SkWindow
43 virtual void onHandleInval(const SkIRect&); 41 virtual void onHandleInval(const SkIRect&);
44 virtual void onSetTitle(const char title[]); 42 virtual void onSetTitle(const char title[]);
45 43
46 private: 44 private:
47 SkAndroidWindow fWindow; 45 SkAndroidWindow fWindow;
48 ANativeWindow* fNativeWindow; 46 ANativeWindow* fNativeWindow;
49 bool fDestroyRequested; 47 bool fDestroyRequested;
50 48
51 typedef SkWindow INHERITED; 49 typedef SkWindow INHERITED;
52 }; 50 };
53 51
54 #endif 52 #endif
OLDNEW
« no previous file with comments | « no previous file | include/views/SkWindow.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698