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

Side by Side Diff: debugger/QT/SkDebuggerGUI.cpp

Issue 15806010: Separate core and images project. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Change FORCE_LINKING to be more specific. Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | gyp/core.gypi » ('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 2012 Google Inc. 2 * Copyright 2012 Google Inc.
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 #include "SkDebuggerGUI.h" 8 #include "SkDebuggerGUI.h"
9 #include "SkForceLinking.h"
9 #include "SkGraphics.h" 10 #include "SkGraphics.h"
10 #include "SkImageDecoder.h" 11 #include "SkImageDecoder.h"
11 #include <QListWidgetItem> 12 #include <QListWidgetItem>
12 #include "PictureRenderer.h" 13 #include "PictureRenderer.h"
13 #include "SkPictureRecord.h" 14 #include "SkPictureRecord.h"
14 #include "SkPicturePlayback.h" 15 #include "SkPicturePlayback.h"
15 16
17 __SK_FORCE_IMAGE_DECODER_LINKING;
18
16 #if defined(SK_BUILD_FOR_WIN32) 19 #if defined(SK_BUILD_FOR_WIN32)
17 #include "BenchSysTimer_windows.h" 20 #include "BenchSysTimer_windows.h"
18 #elif defined(SK_BUILD_FOR_MAC) 21 #elif defined(SK_BUILD_FOR_MAC)
19 #include "BenchSysTimer_mach.h" 22 #include "BenchSysTimer_mach.h"
20 #elif defined(SK_BUILD_FOR_UNIX) || defined(SK_BUILD_FOR_ANDROID) 23 #elif defined(SK_BUILD_FOR_UNIX) || defined(SK_BUILD_FOR_ANDROID)
21 #include "BenchSysTimer_posix.h" 24 #include "BenchSysTimer_posix.h"
22 #else 25 #else
23 #include "BenchSysTimer_c.h" 26 #include "BenchSysTimer_c.h"
24 #endif 27 #endif
25 28
(...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after
1001 } 1004 }
1002 1005
1003 // NOTE(chudy): Makes first item unselectable. 1006 // NOTE(chudy): Makes first item unselectable.
1004 QStandardItemModel* model = qobject_cast<QStandardItemModel*>( 1007 QStandardItemModel* model = qobject_cast<QStandardItemModel*>(
1005 fFilter.model()); 1008 fFilter.model());
1006 QModelIndex firstIndex = model->index(0, fFilter.modelColumn(), 1009 QModelIndex firstIndex = model->index(0, fFilter.modelColumn(),
1007 fFilter.rootModelIndex()); 1010 fFilter.rootModelIndex());
1008 QStandardItem* firstItem = model->itemFromIndex(firstIndex); 1011 QStandardItem* firstItem = model->itemFromIndex(firstIndex);
1009 firstItem->setSelectable(false); 1012 firstItem->setSelectable(false);
1010 } 1013 }
OLDNEW
« no previous file with comments | « no previous file | gyp/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698